/* CSS spécifique pour /agence-evenementielle-paris - extrait depuis la version live */

/* Bloc #1 */
.hero_bg-pattern {
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 150%;
      background: radial-gradient(ellipse at center, rgba(118, 228, 155, 0.06) 0%, transparent 70%);
      transform: rotate(45deg);
      z-index: -1;
      animation: float-pattern 20s ease-in-out infinite;
    }
    
    @keyframes float-pattern {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50% { transform: rotate(45deg) translateY(30px); }
    }
    
    .hero_subtitle {
      transform: translateY(20px);
      animation: fadeUp 0.8s ease forwards 0.2s;
    }
    
    .hero_title {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.4s;
    }
    
    .hero_title .highlight {
      color: var(--text-light);
      background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero_description {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.6s;
    }
    
    .hero_description strong {
      color: var(--text-light);
      font-weight: 600;
    }
    
    .hero_description .highlight {
      color: var(--accent-green);
      font-weight: 600;
    }
    
    /* Stats factuels */
    .hero_stats {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.7s;
    }
    
    .stat_item {
      transition: all 0.3s ease;
    }
    
    .stat_item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-green), var(--accent-purple));
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    
    .stat_item:hover::before {
      transform: scaleX(1);
    }
    
    .stat_item:hover {
      background: rgba(118, 228, 155, 0.08);
      border-color: rgba(118, 228, 155, 0.3);
      transform: translateY(-5px);
    }
    
    .stat_icon svg {
      width: 20px;
      height: 20px;
      fill: var(--primary-dark);
    }
    
    /* CTA simples et directs */
    .hero_cta-container {
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.8s;
    }
    
    .hero_cta {
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(118, 228, 155, 0.2);
    }
    
    .hero_cta::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.7s;
    }
    
    .hero_cta:hover::before {
      left: 100%;
    }
    
    .hero_cta:hover {
      background: var(--accent-purple);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(66, 58, 187, 0.3);
    }
    
    .hero_cta.secondary {
      background: transparent;
      border: 2px solid var(--accent-green);
      color: var(--text-light);
      box-shadow: none;
    }
    
    .hero_cta.secondary:hover {
      background: rgba(118, 228, 155, 0.1);
      border-color: var(--accent-purple);
    }
    
    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @media (max-width: 768px) {
      
      .hero_cta-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero_cta {
        width: 100%;
      }
    }

/* Bloc #2 */
/* Sustainability Section Styles */
      .section_sustainability {
        position: relative;
        overflow: hidden;
        z-index: 1;
      }
      
      .sustainability-diagonal-top {
        position: absolute;
        top: -15vw;
        left: 0;
        width: 100%;
        height: 15vw;
        background-color: var(--primary-dark);
        transform: skewY(-3deg);
        transform-origin: top left;
        z-index: -1;
        border-bottom: 1px solid rgba(118, 228, 155, 0.1);
      }
      
      .sustainability-diagonal-bottom {
        position: absolute;
        bottom: -15vw;
        left: 0;
        width: 100%;
        height: 15vw;
        background-color: var(--primary-dark);
        transform: skewY(3deg);
        transform-origin: bottom right;
        z-index: 0;
        border-top: 1px solid rgba(118, 228, 155, 0.1);
      }
      
      .sustainability-container {
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }
      
      .section-title-wrapper {
        text-align: center;
        margin-bottom: var(--spacing-lg);
        opacity: 0;
        transform: translateY(30px);
      }
      
      .section-title-wrapper.fade-in-up {
        animation: fadeUp 1s ease forwards;
      }
      
      .section-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: var(--spacing-md);
        text-transform: uppercase;
        color: var(--text-light);
        position: relative;
        display: inline-block;
      }
      
      .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
        border-radius: 2px;
      }
      
      .section-desc {
        color: var(--text-secondary);
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
      }
      
      .sustainability-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        margin-top: var(--spacing-lg);
      }
      
      .sustainability-content {
        opacity: 0;
        transform: translateX(-30px);
      }
      
      .sustainability-content.fade-in-left {
        animation: fadeLeft 1s ease forwards;
      }
      
      .sustainability-subtitle {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: var(--spacing-sm);
        font-family: 'Broad Sans', sans-serif;
      }
      
      .sustainability-text {
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: var(--spacing-md);
        font-family: 'Schibsted Grotesk', sans-serif;
      }
      
      .sustainability-commitment {
        display: flex;
        align-items: flex-start;
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-md);
        background: rgba(19, 21, 33, 0.5);
        border: 1px solid rgba(118, 228, 155, 0.1);
        border-radius: var(--border-radius);
        transition: all var(--transition-normal);
      }
      
      .sustainability-commitment:hover {
        transform: translateY(-5px);
        border-color: rgba(118, 228, 155, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }
      
      .commitment-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(118, 228, 155, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: var(--spacing-md);
        flex-shrink: 0;
      }
      
      .commitment-icon svg {
        width: 25px;
        height: 25px;
        fill: var(--accent-green);
      }
      
      .commitment-content {
        flex-grow: 1;
      }
      
      .commitment-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: 8px;
        font-family: 'Broad Sans', sans-serif;
      }
      
      .commitment-desc {
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 0.95rem;
        font-family: 'Schibsted Grotesk', sans-serif;
      }
      
      .sustainability-image {
        position: relative;
        opacity: 0;
        transform: translateX(30px);
      }
      
      .sustainability-image.fade-in-right {
        animation: fadeRight 1s ease forwards;
      }
      
      .sustainability-image-wrapper {
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        height: 100%;
        background: rgba(19, 21, 33, 0.5);
        border: 1px solid rgba(118, 228, 155, 0.1);
        display: flex;
        flex-direction: column;
      }
      
      .sustainability-image-wrapper:hover {
        border-color: rgba(118, 228, 155, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all var(--transition-normal);
      }
      
      .sustainability-approach {
        margin-bottom: var(--spacing-md);
      }
      
      .approach-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: var(--spacing-sm);
        font-family: 'Broad Sans', sans-serif;
        display: flex;
        align-items: center;
      }
      
      .approach-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(118, 228, 155, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: var(--spacing-sm);
        flex-shrink: 0;
      }
      
      .approach-icon svg {
        width: 20px;
        height: 20px;
        fill: var(--accent-green);
      }
      
      .approach-text {
        color: var(--text-secondary);
        line-height: 1.6;
        font-family: 'Schibsted Grotesk', sans-serif;
      }
      
      .eco-principles {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      
      .eco-principle {
        padding: var(--spacing-md);
        background: rgba(118, 228, 155, 0.05);
        border: 1px solid rgba(118, 228, 155, 0.1);
        border-radius: var(--border-radius);
        margin-bottom: var(--spacing-md);
        transition: all var(--transition-normal);
      }
      
      .eco-principle:hover {
        background: rgba(118, 228, 155, 0.1);
        transform: translateX(5px);
      }
      
      .eco-principle:last-child {
        margin-bottom: 0;
      }
      
      .principle-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--accent-green);
        margin-bottom: 8px;
        font-family: 'Broad Sans', sans-serif;
      }
      
      .principle-text {
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 0.95rem;
        font-family: 'Schibsted Grotesk', sans-serif;
      }
      
      /* Circle background elements */
      .circle-bg {
        position: absolute;
        border-radius: 50%;
        background: var(--accent-green);
        opacity: 0.03;
        z-index: 1;
      }
      
      .sustainability-circle-1 {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -200px;
      }
      
      .sustainability-circle-2 {
        width: 300px;
        height: 300px;
        bottom: -100px;
        left: -100px;
      }
      
      /* Animations */
      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      @keyframes fadeLeft {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      
      @keyframes fadeRight {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      
      /* Media Queries */
      @media (max-width: 992px) {
        .sustainability-grid {
          grid-template-columns: 1fr;
          gap: var(--spacing-md);
        }
        
        .sustainability-image {
          margin-top: var(--spacing-md);
        }
        
        .section-title {
          font-size: 2.5rem;
        }
        
        .sustainability-subtitle {
          font-size: 1.6rem;
        }
      }
      
      @media (max-width: 768px) {
        .section-title {
          font-size: 2rem;
        }
      }
      
      @media (max-width: 576px) {
        .commitment-icon {
          width: 40px;
          height: 40px;
        }
        
        .commitment-icon svg {
          width: 20px;
          height: 20px;
        }
        
        .section-title {
          font-size: 1.8rem;
        }
        
        .sustainability-subtitle {
          font-size: 1.4rem;
        }
        
        .approach-title {
          font-size: 1.2rem;
        }
      }

/* Bloc #3 */
html.wf-design-mode .faq-item,
    html.wf-design-mode .faq-answer {
      opacity: 1 !important;
      transform: none !important;
      max-height: none !important;
    }
     :root {
      --transition-normal: 0.3s ease;
    }
    .section_faq {
      position: relative;
      background: linear-gradient(135deg, rgba(19, 21, 33, 0.98) 0%, var(--primary-dark) 100%);
      overflow: hidden;
      z-index: 1;
    }
    
    .faq-diagonal-top {
      position: absolute;
      top: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(3deg);
      transform-origin: top right;
      z-index: 0;
      border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .faq-diagonal-bottom {
      position: absolute;
      bottom: -15vw;
      left: 0;
      width: 100%;
      height: 15vw;
      background-color: var(--primary-dark);
      transform: skewY(-3deg);
      transform-origin: bottom left;
      z-index: 0;
      border-top: 1px solid rgba(118, 228, 155, 0.1);
    }
    
    .faq-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2376E49B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.05;
      z-index: 0;
    }
    
    .faq-container {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .faq-header {
      text-align: center;
      margin-bottom: var(--spacing-lg);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards 0.1s;
    }
    
    .faq-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: var(--spacing-md);
      text-transform: uppercase;
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }
    
    .faq-title .highlight {
      color: var(--accent-green);
    }
    
    .faq-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
      border-radius: 2px;
    }
    
    .faq-subtitle {
      color: var(--text-secondary);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .faq-items {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-xl);
    }
    
    .faq-item {
      background: rgba(19, 21, 33, 0.5);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: all var(--transition-normal);
      opacity: 0;
      transform: translateY(20px);
    }
    
    .faq-item:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.2s; }
    .faq-item:nth-child(2) { animation: fadeUp 0.8s ease forwards 0.3s; }
    .faq-item:nth-child(3) { animation: fadeUp 0.8s ease forwards 0.4s; }
    .faq-item:nth-child(4) { animation: fadeUp 0.8s ease forwards 0.5s; }
    .faq-item:nth-child(5) { animation: fadeUp 0.8s ease forwards 0.6s; }
    .faq-item:nth-child(6) { animation: fadeUp 0.8s ease forwards 0.7s; }
    .faq-item:nth-child(7) { animation: fadeUp 0.8s ease forwards 0.8s; }
    
    .faq-item:hover {
      border-color: rgba(118, 228, 155, 0.3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px);
    }
    
    .faq-question {
      padding: var(--spacing-md);
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    
    .faq-question-text {
      font-family: 'Broad Sans', sans-serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--text-light);
      padding-right: var(--spacing-md);
    }
    
    .faq-icon {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    
    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background-color: var(--accent-green);
      transition: all var(--transition-normal);
    }
    
    .faq-icon::before {
      top: 11px;
      left: 0;
      width: 24px;
      height: 2px;
    }
    
    .faq-icon::after {
      top: 0;
      left: 11px;
      width: 2px;
      height: 24px;
    }
    
    .faq-item.active .faq-icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }
    
    .faq-answer {
      max-height: 0;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      max-height: 1000px;
    }
    
    .faq-answer-content {
      padding: 0 var(--spacing-md) var(--spacing-md);
      color: var(--text-secondary);
      line-height: 1.6;
      font-family: 'Schibsted Grotesk', sans-serif;
    }
    
    .faq-answer-content p:last-child {
      margin-bottom: 0;
    }
    
    .faq-answer-content strong {
      color: var(--text-light);
      font-weight: 600;
    }
    
    .faq-answer-content .highlight {
      color: var(--accent-green);
      font-weight: 600;
    }
    
    .faq-answer-list {
      list-style: none;
      padding: 0;
      margin: var(--spacing-sm) 0;
    }
    
    .faq-answer-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: var(--spacing-xs);
      color: var(--text-secondary);
    }
    
    .faq-answer-list li::before {
      content: '▸';
      color: var(--accent-green);
      font-weight: bold;
      margin-right: var(--spacing-xs);
      margin-top: 2px;
    }
    
    /* Background elements */
    .faq-bg-element {
      position: absolute;
      z-index: 0;
    }
    
    .faq-wave {
      width: 400px;
      height: 400px;
      background-color: var(--accent-green);
      border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      opacity: 0.03;
      top: 20%;
      right: -200px;
      animation: morphWave 15s infinite alternate ease-in-out;
    }
    
    @keyframes morphWave {
      0% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      }
      50% {
        border-radius: 35% 65% 35% 65% / 65% 35% 65% 35%;
      }
      100% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
      }
    }
    
    .faq-dots {
      width: 300px;
      height: 300px;
      background-image: radial-gradient(var(--accent-green) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.05;
      bottom: 15%;
      left: 5%;
    }
    
    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Media Queries */
    @media (max-width: 992px) {
      .faq-title {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .faq-title {
        font-size: 2.2rem;
      }
      
      .faq-question-text {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 576px) {
      .faq-title {
        font-size: 2rem;
      }
      
      .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
      }
      
      .faq-question-text {
        font-size: 1rem;
      }
      
      .faq-answer-content {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.95rem;
      }
    }
