/* CSS spécifique pour /seminaires - 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 */
/* Séminaires Formats Section Styles */
      .section_formats {
        position: relative;
        background-color: var(--primary-dark);
        overflow: hidden;
        z-index: 1;
      }
      
      .formats-diagonal-top {
        position: absolute;
        top: -12vw;
        left: 0;
        width: 100%;
        height: 12vw;
        background-color: var(--primary-dark);
        transform: skewY(2deg);
        transform-origin: top right;
        z-index: -1;
        border-bottom: 1px solid rgba(118, 228, 155, 0.1);
      }
      
      .formats-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2376E49B' fill-opacity='0.02'%3E%3Cpath d='M20 20h40v40H20V20zm10 10v20h20V30H30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
        z-index: -1;
      }
      
      .formats-container {
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }
      
      .formats-header {
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards 0.1s;
      }
      
      .formats-title {
        margin-bottom: var(--spacing-md);
        text-transform: uppercase;
        color: var(--text-light);
        position: relative;
        display: inline-block;
      }
      
      .formats-title .highlight {
        color: var(--accent-green);
      }
      
      .formats-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
        border-radius: 2px;
      }
      
      .formats-subtitle {
        color: var(--text-secondary);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
      }
      

      
      .format-card {
        background: rgba(19, 21, 33, 0.6);
        border: 1px solid rgba(118, 228, 155, 0.1);
        border-radius: var(--border-radius);
        transition: all var(--transition-normal);
        opacity: 0;
        transform: translateY(30px);
        position: relative;
        overflow: hidden;
      }
      
      .format-card:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.2s; }
      .format-card:nth-child(2) { animation: fadeUp 0.8s ease forwards 0.3s; }
      .format-card:nth-child(3) { animation: fadeUp 0.8s ease forwards 0.4s; }
      .format-card:nth-child(4) { animation: fadeUp 0.8s ease forwards 0.5s; }
      .format-card:nth-child(5) { animation: fadeUp 0.8s ease forwards 0.6s; }
      .format-card:nth-child(6) { animation: fadeUp 0.8s ease forwards 0.7s; }
      
      .format-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(118, 228, 155, 0.05), rgba(66, 58, 187, 0.05));
        opacity: 0;
        transition: opacity var(--transition-normal);
      }
      
      .format-card:hover {
        border-color: rgba(118, 228, 155, 0.3);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      }
      
      .format-card:hover::before {
        opacity: 1;
      }
      
      .format-header {
        display: flex;
        align-items: center;
        margin-bottom: var(--spacing-md);
        position: relative;
        z-index: 2;
      }
      
      .format-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: var(--spacing-md);
        transition: all var(--transition-normal);
        flex-shrink: 0;
      }
      
      .format-card:hover .format-icon {
        transform: scale(1.1) rotate(5deg);
      }
      
      .format-icon svg {
        width: 30px;
        height: 30px;
        fill: var(--primary-dark);
      }
      
      .format-title-container {
        flex: 1;
      }
      
      .format-name {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: var(--spacing-xs);
        text-transform: uppercase;
      }
      
      .format-duration {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
        color: var(--accent-green);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
      }
      
      .format-description {
        font-family: 'Schibsted Grotesk', sans-serif;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
        font-size: 1rem;
        position: relative;
        z-index: 2;
      }
      
      .format-description strong {
        color: var(--text-light);
        font-weight: 600;
      }
      
      .format-details {
        background: rgba(118, 228, 155, 0.05);
        border-radius: var(--border-radius);
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        position: relative;
        z-index: 2;
      }
      
      .format-details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
      }
      
      .format-detail {
        display: flex;
        align-items: center;
        color: var(--text-light);
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
      }
      
      .format-detail-icon {
        width: 16px;
        height: 16px;
        margin-right: 8px;
        flex-shrink: 0;
      }
      
      .format-detail-icon svg {
        width: 100%;
        height: 100%;
        fill: var(--accent-green);
      }
      
      .format-objectives {
        list-style: none;
        padding: 0;
        margin: 0 0 var(--spacing-md);
        position: relative;
        z-index: 2;
      }
      
      .format-objective {
        display: flex;
        align-items: flex-start;
        margin-bottom: var(--spacing-xs);
        color: var(--text-secondary);
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
        line-height: 1.5;
      }
      
      .format-objective::before {
        content: '→';
        color: var(--accent-green);
        font-weight: bold;
        margin-right: 8px;
        margin-top: 2px;
        flex-shrink: 0;
      }
      
      /* Conseils section */
      .conseils-section {
        background: linear-gradient(135deg, rgba(118, 228, 155, 0.08), rgba(66, 58, 187, 0.08));
        border-radius: var(--border-radius);
        border: 1px solid rgba(118, 228, 155, 0.2);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards 0.8s;
      }
      
      .conseils-title {
        color: var(--text-light);
        text-transform: uppercase;
        text-align: center;
      }
      
      .conseils-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: start;
      }
      
      .conseils-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 1rem;
      }
      
      .conseils-text strong {
        color: var(--text-light);
        font-weight: 600;
      }
      
      .conseils-text .highlight {
        color: var(--accent-green);
        font-weight: 600;
      }
      
      .conseils-tips {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .conseils-tip {
        display: flex;
        align-items: flex-start;
        margin-bottom: var(--spacing-sm);
        padding: var(--spacing-sm);
        background: rgba(19, 21, 33, 0.4);
        border-radius: var(--border-radius);
        border-left: 3px solid var(--accent-green);
        transition: all var(--transition-normal);
      }
      
      .conseils-tip:hover {
        background: rgba(19, 21, 33, 0.6);
        transform: translateX(5px);
      }
      
      .conseils-tip-icon {
        width: 20px;
        height: 20px;
        margin-right: var(--spacing-sm);
        margin-top: 2px;
        flex-shrink: 0;
      }
      
      .conseils-tip-icon svg {
        width: 100%;
        height: 100%;
        fill: var(--accent-green);
      }
      
      .conseils-tip-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
      }
      
      /* Maillage interne */
      .maillage-formats {
        margin-top: var(--spacing-md);
        text-align: center;
      }
      
      .maillage-formats-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
      }
      
      .maillage-formats-link {
        display: inline-block;
        color: var(--accent-green);
        text-decoration: none;
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.95rem;
        padding: var(--spacing-xs) var(--spacing-sm);
        border: 1px solid rgba(118, 228, 155, 0.3);
        border-radius: var(--border-radius);
        transition: all var(--transition-normal);
      }
      
      .maillage-formats-link:hover {
        background: rgba(118, 228, 155, 0.1);
        border-color: var(--accent-green);
        transform: translateY(-2px);
      }
      
      /* Background decoration */
      .formats-bg-element {
        position: absolute;
        opacity: 0.04;
        z-index: -1;
      }
      
      .formats-wave {
        width: 250px;
        height: 250px;
        background-color: var(--accent-green);
        border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
        top: 30%;
        right: -125px;
        animation: morphWave 30s infinite alternate ease-in-out;
      }
      
      .formats-dots {
        width: 180px;
        height: 180px;
        background-image: radial-gradient(var(--accent-purple) 1px, transparent 1px);
        background-size: 18px 18px;
        bottom: 25%;
        left: 5%;
        animation: float 25s infinite ease-in-out;
      }
      
      @keyframes morphWave {
        0% {
          border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
        }
        50% {
          border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
        }
        100% {
          border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
        }
      }
      
      @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
      }
      
      /* Animations */
      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      /* Responsive */
      @media (max-width: 992px) {

    
        
        .conseils-content {
          grid-template-columns: 1fr;
          gap: var(--spacing-md);
        }
      }
      
      @media (max-width: 768px) {
        
        
        
        .format-header {
          flex-direction: column;
          text-align: center;
        }
        
        .format-icon {
          margin-right: 0;
          margin-bottom: var(--spacing-sm);
        }
        
        .format-details-grid {
          grid-template-columns: 1fr;
        }
      }
