.elementor-2027 .elementor-element.elementor-element-880bce7{--display:flex;}/* Start custom CSS *//* ============================================
   VARIABLES & RESETS
   ============================================ */

:root {
  --color-primary: #112b55;
  --color-secondary: #ed313b;
  --color-text: #112b55;
  --color-text-light: #4a4a4a;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f5f5f5;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --font-family: var(--font-primary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Force les polices sur tous les éléments */
*,
*::before,
*::after {
  font-family: var(--font-primary) !important;
}

body {
  font-family: var(--font-primary) !important;
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Classes d'animation */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-delay-6 {
  animation-delay: 0.6s;
}

/* ============================================
   STRUCTURE DE BASE
   ============================================ */

.section {
  width: 100%;
  max-width: 100%;
  padding: 80px 0;
  margin: 0;
}

.section-white {
  background-color: var(--color-bg-white);
}

.section-gray {
  background-color: var(--color-bg-gray);
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
}

.section-content {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */

/* Titre principal - 2px plus grand que les autres H2 */
.main-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 30px;
  line-height: 1.3;
  font-family: var(--font-primary) !important;
  animation: fadeInUp 0.8s ease-out;
}

/* Tous les autres H2 - même taille */
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: var(--font-primary) !important;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 10px;
  font-family: var(--font-primary) !important;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.section-text {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-primary) !important;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.section-text:nth-child(2) {
  animation-delay: 0.4s;
}

.section-text:nth-child(3) {
  animation-delay: 0.5s;
}

.section-text:nth-child(4) {
  animation-delay: 0.6s;
}

.section-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.highlight {
  color: var(--color-secondary);
  font-weight: 700;
  font-style: italic;
}

/* ============================================
   SECTION : Qui Sommes-Nous
   ============================================ */

.section-white .section-content {
  text-align: left;
}

/* ============================================
   SECTION : La Genèse
   ============================================ */

.genese-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
}

.genese-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px 25px;
  background: var(--color-bg-white);
  border-radius: 0;
  box-shadow: none;
  border-left: 4px solid var(--color-secondary);
  animation: slideInLeft 0.8s ease-out both;
}

.genese-card:nth-child(1) {
  animation-delay: 0.2s;
}

.genese-card:nth-child(2) {
  animation-delay: 0.4s;
  animation-name: slideInRight;
}

.genese-card:nth-child(2) {
  border-left-color: var(--color-primary);
}

.genese-icon-1,
.genese-icon-2 {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: scaleIn 0.6s ease-out 0.5s both;
  transition: transform 0.3s ease;
}

.genese-icon-1:hover,
.genese-icon-2:hover {
  transform: scale(1.1) rotate(5deg);
}

.genese-icon-1 svg,
.genese-icon-2 svg {
  width: 25px;
  height: 25px;
}

.genese-icon-1 {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b6b);
}

.genese-icon-2 {
  background: linear-gradient(135deg, var(--color-primary), #1e3a5f);
}

.genese-quote {
  background: var(--color-bg-white);
  border-left: 4px solid var(--color-secondary);
  padding: 25px 30px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.genese-quote p {
  font-size: 20px;
  color: var(--color-secondary);
  font-weight: 600;
  font-style: italic;
  margin: 0;
  font-family: var(--font-primary) !important;
}

.genese-mission {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   CARTES (CARDS)
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  width: 100%;
  max-width: 100%;
}

.card {
  background: var(--color-bg-white);
  border-radius: 0;
  padding: 30px;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out both;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.6s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.card-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease-out 0.3s both;
  transition: transform 0.3s ease;
}

.card-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
  width: 30px;
  height: 30px;
}

.card-text {
  font-size: 17px;
  color: var(--color-primary);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-primary) !important;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.card-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.card-content {
  flex: 1;
  width: 100%;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--font-primary) !important;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Icônes Mission */
.mission-icon-1,
.mission-icon-3 {
  background: linear-gradient(135deg, var(--color-primary), #1e3a5f);
}

.mission-icon-2 {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b6b);
}

/* Icônes Équipe */
.team-icon-1 {
  background: linear-gradient(135deg, var(--color-secondary), #ff6b6b);
}

.team-icon-2 {
  background: linear-gradient(135deg, var(--color-primary), #1e3a5f);
}

.team-icon-3 {
  background: linear-gradient(135deg, #ffb3ba, #ffccd5);
}

.team-card {
  align-items: flex-start;
  text-align: left;
}

.team-card .card-content {
  text-align: left;
}

/* ============================================
   SECTION : CTA
   ============================================ */

.cta-section {
  background: linear-gradient(rgba(17, 43, 85, 0.85), rgba(17, 43, 85, 0.85)), url('https://demarches-en-france.fr/wp-content/uploads/2023/01/footer-1-1.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

.cta-content {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
}

.cta-title {
  color: #ffffff !important;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: #ffffff !important;
  margin-bottom: 30px;
  font-family: var(--font-primary) !important;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-secondary);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: var(--font-primary) !important;
  animation: scaleIn 0.8s ease-out 0.8s both;
}

.cta-button:hover {
  background: #ff6b6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 49, 59, 0.4);
}

/* ============================================
   SECTION : Nos Valeurs
   ============================================ */

.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
}

.values-item {
  padding: 25px 20px;
  background: var(--color-bg-white);
  border-left: 3px solid;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.values-item:nth-child(1) {
  animation-delay: 0.1s;
}

.values-item:nth-child(2) {
  animation-delay: 0.2s;
}

.values-item:nth-child(3) {
  animation-delay: 0.3s;
}

.values-item:nth-child(4) {
  animation-delay: 0.4s;
}

.values-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.values-item-1 {
  border-left-color: var(--color-secondary);
}

.values-item-2 {
  border-left-color: var(--color-primary);
}

.values-item-3 {
  border-left-color: #ffb3ba;
}

.values-item-4 {
  border-left-color: #ffd93d;
}

.values-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--font-primary) !important;
  animation: fadeIn 0.6s ease-out 0.5s both;
}

.values-text {
  font-size: 17px;
  color: var(--color-primary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-primary) !important;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
  .container {
    padding: 0 30px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .main-title {
    font-size: 26px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .genese-quote p {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .main-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .card-title,
  .values-title {
    font-size: 16px;
  }
  
  .section-text {
    font-size: 17px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .genese-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .genese-card {
    padding: 25px 20px;
  }
  
  .genese-quote {
    padding: 25px 20px;
  }
  
  .genese-quote p {
    font-size: 18px;
  }
  
  .cta-description {
    font-size: 16px;
      color: #ffffff !important;

  }
  
  .cta-button {
    padding: 14px 30px;
    font-size: 16px;
  }
}
.elementor-2027 .elementor-element.elementor-element-880bce7 {
    --display: flex;
    padding: 0;
}/* End custom CSS */