/* ====================================
   AYENAH Custom Styles - Design amélioré
   ==================================== */

/* Variables */
:root {
    --ayenah-green: #009E60;
    --ayenah-green-light: #00c878;
    --ayenah-green-dark: #007a4a;
    --ayenah-orange: #ff7f00;
    --ayenah-orange-light: #ff9933;
    --ayenah-coral: #FF6B35;
    --ayenah-gold: #FFC107;
    --gradient-green: linear-gradient(135deg, #009E60 0%, #00c878 100%);
    --gradient-orange: linear-gradient(135deg, #ff7f00 0%, #ff9933 100%);
    --gradient-coral: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
}

/* ====== HEADER/MENU FIXES ====== */
.header .navbar__item--has-children > .navbar__dropdown-label {
    background: transparent !important;
    border: none !important;
    font-family: inherit !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #16171a !important;
    text-transform: capitalize !important;
    padding: 42px 15px !important;
    line-height: 1 !important;
}

.header .navbar__item--has-children > .navbar__dropdown-label .menu-form {
    font-weight: 600 !important;
    color: #16171a !important;
}

/* ====== PILIERS CARDS ====== */
.pilier-card {
    position: relative;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pilier-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pilier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pilier-card:hover::before {
    opacity: 1;
}

.pilier-card--green {
    background: var(--gradient-green);
}

.pilier-card--orange {
    background: var(--gradient-orange);
}

.pilier-card--coral {
    background: var(--gradient-coral);
}

.pilier-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(10px);
}

.pilier-card__number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.pilier-card__title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.pilier-card__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pilier-card__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
}

/* ====== GLOBAL 3D FLOATING ANIMATION ====== */
@keyframes cardFloat {
    0%, 100% {
        transform: rotateY(0deg) rotateX(0deg) translateY(0px);
    }
    25% {
        transform: rotateY(6deg) rotateX(2deg) translateY(-6px);
    }
    50% {
        transform: rotateY(0deg) rotateX(0deg) translateY(-3px);
    }
    75% {
        transform: rotateY(-6deg) rotateX(-2deg) translateY(-6px);
    }
}

@keyframes cardFloatSubtle {
    0%, 100% {
        transform: rotateY(0deg) rotateX(0deg) translateY(0px);
    }
    25% {
        transform: rotateY(4deg) rotateX(1.5deg) translateY(-4px);
    }
    50% {
        transform: rotateY(0deg) rotateX(0deg) translateY(-2px);
    }
    75% {
        transform: rotateY(-4deg) rotateX(-1.5deg) translateY(-4px);
    }
}

/* ====== PHOTO 3D FLOATING EFFECT ====== */
.photo-3d-float {
    perspective: 1000px;
}

.photo-3d-float__inner {
    animation: cardFloatSubtle 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.photo-3d-float__inner img {
    transition: box-shadow 0.4s ease;
}

.photo-3d-float:hover .photo-3d-float__inner {
    animation-play-state: paused;
}

.photo-3d-float:hover .photo-3d-float__inner img {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

/* Délais d'animation pour les différentes photos */
.difference-three:nth-of-type(1) .photo-3d-float__inner { animation-delay: 0s; }
.difference-three:nth-of-type(2) .photo-3d-float__inner { animation-delay: 2s; }
.difference-three:nth-of-type(3) .photo-3d-float__inner { animation-delay: 4s; }

/* Pilier Cards 3D */
.pilier-card-3d {
    perspective: 1000px;
    height: 100%;
    min-height: 380px;
}

.pilier-card-3d__inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    animation: cardFloat 6s ease-in-out infinite;
}

.col-lg-4:nth-child(1) .pilier-card-3d__inner { animation-delay: 0s; }
.col-lg-4:nth-child(2) .pilier-card-3d__inner { animation-delay: 2s; }
.col-lg-4:nth-child(3) .pilier-card-3d__inner { animation-delay: 4s; }

.pilier-card-3d .pilier-card {
    height: 100%;
    margin: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.4s ease;
}

.pilier-card-3d .pilier-card:hover {
    transform: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pilier-card-3d:hover .pilier-card-3d__inner {
    animation-play-state: paused;
}

/* Pilier Cards standalone (not in 3D wrapper) */
.pilier-card:not(.pilier-card-3d .pilier-card) {
    animation: cardFloat 6s ease-in-out infinite;
}

.pilier-card:not(.pilier-card-3d .pilier-card):hover {
    animation-play-state: paused;
}

/* Stat Cards animation delays */
.col-lg-3:nth-child(1) .stat-card,
.col-md-6:nth-child(1) .stat-card { animation-delay: 0s; }
.col-lg-3:nth-child(2) .stat-card,
.col-md-6:nth-child(2) .stat-card { animation-delay: 1s; }
.col-lg-3:nth-child(3) .stat-card,
.col-md-6:nth-child(3) .stat-card { animation-delay: 2s; }
.col-lg-3:nth-child(4) .stat-card,
.col-md-6:nth-child(4) .stat-card { animation-delay: 3s; }

/* Info Box 3D Animation */
.info-box {
    animation: cardFloatSubtle 6s ease-in-out infinite;
}

.col-lg-4:nth-child(1) .info-box,
.col-md-6:nth-child(1) .info-box { animation-delay: 0s; }
.col-lg-4:nth-child(2) .info-box,
.col-md-6:nth-child(2) .info-box { animation-delay: 1.5s; }
.col-lg-4:nth-child(3) .info-box,
.col-md-6:nth-child(3) .info-box { animation-delay: 3s; }

.info-box:hover {
    animation-play-state: paused;
    transform: translateY(-8px) !important;
}

/* Partner Box 3D Animation */
.partner-box {
    animation: cardFloat 7s ease-in-out infinite;
}

.col-lg-6:nth-child(1) .partner-box { animation-delay: 0s; }
.col-lg-6:nth-child(2) .partner-box { animation-delay: 2s; }

.partner-box:hover {
    animation-play-state: paused;
    transform: translateY(-8px) !important;
}

/* Alert Box 3D Animation */
.alert-box {
    animation: cardFloatSubtle 7s ease-in-out infinite;
}

.alert-box:hover {
    animation-play-state: paused;
}

/* Form Box 3D Animation */
.form-box {
    animation: cardFloatSubtle 8s ease-in-out infinite;
}

.form-box:hover {
    animation-play-state: paused;
}

/* Content Card 3D Animation */
.content-card {
    animation: cardFloatSubtle 8s ease-in-out infinite;
}

.content-card:hover {
    animation-play-state: paused;
}

/* ====== SECTION HEADERS ====== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__subtitle {
    display: inline-block;
    background: rgba(0, 158, 96, 0.1);
    color: var(--ayenah-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header__title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header__title span {
    color: var(--ayenah-green);
}

.section-header__desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====== INFO BOXES ====== */
.info-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-box--bordered-green {
    border-top: 4px solid var(--ayenah-green);
}

.info-box--bordered-orange {
    border-top: 4px solid var(--ayenah-orange);
}

.info-box--bordered-coral {
    border-top: 4px solid var(--ayenah-coral);
}

.info-box__icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 158, 96, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--ayenah-green);
}

.info-box__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.info-box__text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ====== STEPS / TIMELINE ====== */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.step-item__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.step-item__number--green {
    background: var(--gradient-green);
    box-shadow: 0 10px 25px rgba(0, 158, 96, 0.3);
}

.step-item__number--orange {
    background: var(--gradient-orange);
    box-shadow: 0 10px 25px rgba(255, 127, 0, 0.3);
}

.step-item__content {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid var(--ayenah-green);
}

.step-item__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-item__text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ====== STAT CARDS ====== */
.stat-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.3s ease;
    animation: cardFloatSubtle 5s ease-in-out infinite;
}

.stat-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    animation-play-state: paused;
    transform: translateY(-10px);
}

.stat-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stat-card__icon--green {
    background: rgba(0, 158, 96, 0.1);
    color: var(--ayenah-green);
}

.stat-card__icon--orange {
    background: rgba(255, 127, 0, 0.1);
    color: var(--ayenah-orange);
}

.stat-card__number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    display: block !important;
    position: relative;
    z-index: 1;
}

.stat-card__number--green {
    color: var(--ayenah-green);
}

.stat-card__number--orange {
    color: var(--ayenah-orange);
}

.stat-card__label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    display: block !important;
    position: relative;
    z-index: 1;
    margin-top: 5px;
}

/* Prevent SplitText on stat-card content */
.stat-card * {
    transform: none !important;
    opacity: 1 !important;
}

.stat-card .stat-card__number,
.stat-card .stat-card__label {
    animation: none !important;
}

/* ====== ALERT BOXES ====== */
.alert-box {
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.alert-box--warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-left: 4px solid var(--ayenah-gold);
}

.alert-box--success {
    background: linear-gradient(135deg, rgba(0, 158, 96, 0.1) 0%, rgba(0, 158, 96, 0.03) 100%);
    border-left: 4px solid var(--ayenah-green);
}

.alert-box__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.alert-box--warning .alert-box__icon {
    background: var(--ayenah-gold);
}

.alert-box--success .alert-box__icon {
    background: var(--ayenah-green);
}

.alert-box__content {
    flex: 1;
}

.alert-box__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.alert-box__text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    display: block;
    margin: 0;
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: var(--gradient-green);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-section__content {
    position: relative;
    z-index: 2;
}

.cta-section__title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-section__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== BUTTONS ====== */
.btn-ayenah {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-ayenah--primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 158, 96, 0.3);
}

.btn-ayenah--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 158, 96, 0.4);
    color: white;
}

.btn-ayenah--white {
    background: white;
    color: var(--ayenah-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-ayenah--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: var(--ayenah-green);
}

.btn-ayenah--outline {
    background: transparent;
    color: var(--ayenah-green);
    border: 2px solid var(--ayenah-green);
}

.btn-ayenah--outline:hover {
    background: var(--ayenah-green);
    color: white;
}

/* Override template buttons to match AYENAH style */
.btn--primary,
.btn--tertiary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    background: var(--ayenah-green) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(0, 158, 96, 0.25) !important;
}

.btn--primary:hover,
.btn--tertiary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 158, 96, 0.35) !important;
    color: white !important;
    background: var(--ayenah-green-dark) !important;
}

.btn--primary i,
.btn--tertiary i {
    font-size: 14px !important;
}

/* Secondary/outline button style */
.btn--secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
    background: transparent !important;
    color: var(--ayenah-green) !important;
    border: 2px solid var(--ayenah-green) !important;
}

.btn--secondary:hover {
    background: var(--ayenah-green) !important;
    color: white !important;
}

/* ====== TABLE STYLES ====== */
.table-ayenah {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.table-ayenah thead th {
    background: var(--gradient-green);
    color: white;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    border: none;
}

.table-ayenah tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 15px;
}

.table-ayenah tbody tr:last-child td {
    border-bottom: none;
}

.table-ayenah tbody tr:hover {
    background: rgba(0, 158, 96, 0.03);
}

/* ====== PROCESS FLOW ====== */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.process-flow__item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.process-flow__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.process-flow__label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.process-flow__arrow {
    color: var(--ayenah-green);
    font-size: 1.5rem;
}

/* ====== ELIGIBILITY PARTNER BOXES ====== */
.partner-box {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-box:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.partner-box--green {
    border: 2px solid var(--ayenah-green);
}

.partner-box--orange {
    border: 2px solid var(--ayenah-orange);
}

.partner-box__header {
    text-align: center;
    margin-bottom: 25px;
}

.partner-box__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.partner-box--green .partner-box__icon {
    background: var(--gradient-green);
}

.partner-box--orange .partner-box__icon {
    background: var(--gradient-orange);
}

.partner-box__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.partner-box__list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.partner-box__list li:last-child {
    border-bottom: none;
}

.partner-box__list li i {
    color: var(--ayenah-green);
    font-size: 14px;
}

/* ====== SIMPLE FORM STYLES ====== */

/* African Bogolan-inspired background pattern */
.african-pattern-bg {
    background-color: #f8f6f2;
    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' stroke='%23e0d9ce' stroke-width='1.2' opacity='0.7'%3E%3C!-- Concentric diamonds --%3E%3Cpath d='M40 5 L55 20 L40 35 L25 20 Z'/%3E%3Cpath d='M40 10 L50 20 L40 30 L30 20 Z'/%3E%3C!-- Zigzag border --%3E%3Cpath d='M0 40 L5 35 L10 40 L15 35 L20 40'/%3E%3Cpath d='M60 40 L65 35 L70 40 L75 35 L80 40'/%3E%3C!-- African cross/plus --%3E%3Cpath d='M10 60 L10 75 M2 67.5 L18 67.5'/%3E%3Cpath d='M70 10 L70 22 M64 16 L76 16'/%3E%3C!-- Triangle patterns --%3E%3Cpath d='M55 55 L65 55 L60 45 Z'/%3E%3Cpath d='M15 45 L25 45 L20 55 Z'/%3E%3C!-- Dots cluster --%3E%3Ccircle cx='40' cy='60' r='2'/%3E%3Ccircle cx='35' cy='65' r='1.5'/%3E%3Ccircle cx='45' cy='65' r='1.5'/%3E%3Ccircle cx='40' cy='70' r='1.5'/%3E%3C!-- Small lines --%3E%3Cpath d='M5 15 L15 15'/%3E%3Cpath d='M5 18 L12 18'/%3E%3Cpath d='M65 70 L75 70'/%3E%3Cpath d='M68 73 L75 73'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 80px 80px;
}

/* Content Card - for content on pattern background */
.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

/* ====== FORM BOX ====== */
.form-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-box__header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 40px;
    background: var(--gradient-green);
    color: white;
}

.form-box__header-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.form-box__header-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: white;
}

.form-box__header-text {
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* ====== SIMPLE FORM ====== */
.simple-form {
    max-width: 100%;
    padding: 40px 40px 45px;
}

.simple-form__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin: 35px 0 22px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simple-form__section-title i {
    font-size: 18px;
}

.simple-form__section-title:first-child {
    margin-top: 0;
}

.simple-form__group {
    margin-bottom: 22px;
}

.simple-form__group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.simple-form__group label span {
    color: #e53e3e;
    margin-left: 2px;
}

.simple-form__input-wrap {
    position: relative;
}

.simple-form__input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 15px;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 1;
}

.simple-form__input-wrap:focus-within .simple-form__input-icon {
    color: var(--ayenah-green);
}

.simple-form__input--icon {
    padding-left: 46px !important;
}

.simple-form__group input,
.simple-form__group select,
.simple-form__group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: #2d3748;
    background: #f7fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.25s ease;
    outline: none;
}

.simple-form__group input:focus,
.simple-form__group select:focus,
.simple-form__group textarea:focus {
    background: #fff;
    border-color: var(--ayenah-green);
    box-shadow: 0 0 0 3px rgba(0, 158, 96, 0.1);
}

.simple-form__group input::placeholder,
.simple-form__group textarea::placeholder {
    color: #a0aec0;
}

.simple-form__group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #f7fafc;
    padding-right: 48px;
    cursor: pointer;
    color: #4a5568;
}

.simple-form__group select:focus {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23009E60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.simple-form__group select option {
    padding: 12px;
    background: #fff;
    color: #4a5568;
}

.simple-form__group select option:checked {
    background: var(--ayenah-green);
    color: white;
}

.simple-form__group textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.simple-form__hint {
    font-size: 13px;
    color: #718096;
    margin: 6px 0 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.simple-form__hint i {
    font-size: 12px;
    color: #a0aec0;
}

.simple-form__error {
    font-size: 13px;
    color: #e53e3e;
    margin: 6px 0 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.simple-form__error::before {
    content: '\f06a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
}

/* NiceSelect overrides for form */
.simple-form__group .nice-select {
    width: 100%;
    height: auto;
    padding: 14px 48px 14px 18px;
    font-size: 15px;
    color: #4a5568;
    background: #f7fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    line-height: 1.4;
    transition: all 0.25s ease;
}

.simple-form__group .nice-select:focus,
.simple-form__group .nice-select.open {
    background: #fff;
    border-color: var(--ayenah-green);
    box-shadow: 0 0 0 3px rgba(0, 158, 96, 0.1);
}

.simple-form__group .nice-select .current {
    color: #4a5568;
}

.simple-form__group .nice-select::after {
    border-color: #4a5568;
    right: 18px;
}

.simple-form__group .nice-select .list {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    max-height: 250px;
    overflow-y: auto;
}

.simple-form__group .nice-select .option {
    padding: 10px 18px;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    min-height: auto;
}

.simple-form__group .nice-select .option:hover,
.simple-form__group .nice-select .option.focus {
    background: rgba(0, 158, 96, 0.08);
    color: var(--ayenah-green);
}

.simple-form__group .nice-select .option.selected {
    font-weight: 600;
    color: var(--ayenah-green);
}

/* ====== FORM STEP INDICATORS ====== */
.simple-form__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

.simple-form__step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.simple-form__step-indicator--active {
    opacity: 1;
}

.simple-form__step-indicator .simple-form__step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #e2e8f0;
    color: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.simple-form__step-indicator--active .simple-form__step-num {
    background: var(--gradient-green);
    color: white;
}

.simple-form__step-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.simple-form__step-divider {
    width: 40px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 16px;
}

.simple-form__submit {
    margin-top: 35px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #edf2f7;
}

.simple-form__submit button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--gradient-green);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 158, 96, 0.3);
}

.simple-form__submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 158, 96, 0.4);
}

.simple-form__submit-note {
    font-size: 13px;
    color: #a0aec0;
    margin: 14px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.simple-form__submit-note i {
    font-size: 12px;
}

/* ====== FORM SIDEBAR ====== */
.form-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-sidebar__card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--ayenah-green);
}

.form-sidebar__card--orange {
    border-left-color: var(--ayenah-orange);
}

.form-sidebar__icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 158, 96, 0.1);
    color: var(--ayenah-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 12px;
}

.form-sidebar__icon--orange {
    background: rgba(255, 127, 0, 0.1);
    color: var(--ayenah-orange);
}

.form-sidebar__title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 6px 0;
}

.form-sidebar__text {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.form-sidebar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ayenah-green);
    margin-top: 10px;
    transition: gap 0.2s ease;
}

.form-sidebar__link:hover {
    gap: 10px;
    color: var(--ayenah-green-dark);
}

.form-sidebar__steps {
    background: #f7fafc;
    border-radius: 16px;
    padding: 22px;
}

.form-sidebar__steps-title {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 14px 0;
}

.form-sidebar__step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #4a5568;
}

.form-sidebar__step:not(:last-child) {
    border-bottom: 1px solid #edf2f7;
}

.form-sidebar__step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--gradient-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* Button Sizes */
.btn-ayenah--lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-ayenah--sm {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-ayenah--block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ====== FIX: Disable nested floating animations ====== */
/* Elements inside content-card should not float independently */
.content-card .stat-card,
.content-card .info-box,
.content-card .alert-box {
    animation: none;
}

/* Stacked alert-boxes and info-boxes inside columns should not float independently */
/* Also fix height: 100% causing overflow when multiple info-boxes are stacked vertically */
.col-lg-6 > .alert-box,
.col-lg-6 > .info-box,
.col-lg-6 .info-box--bordered-green,
.col-lg-6 .info-box--bordered-orange,
.col-lg-6 .info-box--bordered-coral {
    animation: none;
    height: auto;
}

/* Stat-card used as a layout container (with row/col inside) - override !important from stat-card * */
.content-card .stat-card * {
    transform: unset !important;
    opacity: unset !important;
}

.content-card .stat-card .stat-card__number,
.content-card .stat-card .stat-card__label {
    animation: unset !important;
}

/* Table responsive wrapper */
.table-ayenah-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ====== SPACING UTILITIES ====== */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .section-header__title {
        font-size: 32px;
    }

    .pilier-card {
        margin-bottom: 20px;
    }

    .pilier-card-3d {
        min-height: 350px;
    }

    .pilier-card-3d__inner {
        min-height: 350px;
        animation-duration: 8s;
    }

    /* Ralentir les animations sur tablette */
    .stat-card,
    .info-box,
    .partner-box,
    .alert-box,
    .form-box,
    .content-card {
        animation-duration: 10s;
    }

    /* Keep nested elements static on tablet */
    .content-card .stat-card,
    .content-card .info-box,
    .content-card .alert-box,
    .col-lg-6 > .alert-box,
    .col-lg-6 > .info-box,
    .col-lg-6 .info-box--bordered-green,
    .col-lg-6 .info-box--bordered-orange,
    .col-lg-6 .info-box--bordered-coral {
        animation: none;
    }

    .stat-card__number {
        font-size: 36px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-section__title {
        font-size: 26px;
    }

    .form-box,
    .content-card {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .simple-form__group input,
    .simple-form__group select,
    .simple-form__group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .simple-form__submit button {
        width: 100%;
        padding: 16px 30px;
    }
}

@media (max-width: 768px) {
    .section-header__title {
        font-size: 28px;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }

    .step-item__number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .pilier-card-3d {
        min-height: 320px;
    }

    .pilier-card-3d__inner {
        min-height: 320px;
        animation: cardFloatMobile 5s ease-in-out infinite;
    }

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

    /* Animation simplifiée sur mobile pour performances */
    .stat-card,
    .info-box,
    .partner-box,
    .alert-box,
    .form-box,
    .content-card {
        animation: cardFloatMobile 6s ease-in-out infinite;
    }

    /* Keep nested elements static on mobile */
    .content-card .stat-card,
    .content-card .info-box,
    .content-card .alert-box,
    .col-lg-6 > .alert-box,
    .col-lg-6 > .info-box,
    .col-lg-6 .info-box--bordered-green,
    .col-lg-6 .info-box--bordered-orange,
    .col-lg-6 .info-box--bordered-coral {
        animation: none;
    }

    .pilier-card__text {
        font-size: 14px;
    }

    .form-box,
    .content-card {
        padding: 25px 20px;
    }

    .simple-form__section-title {
        font-size: 18px;
        margin: 30px 0 20px 0;
    }

    .simple-form__group {
        margin-bottom: 20px;
    }

    .simple-form__group input,
    .simple-form__group select,
    .simple-form__group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-flow__arrow {
        transform: rotate(90deg);
    }
}

/* ====== FLOATING SOCIAL SHARE BUTTONS (fixed, scoped via JS) ====== */
.social-share-float {
    position: fixed !important;
    left: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    flex-direction: column !important;
    gap: 0 !important;
    z-index: 999 !important;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 8px !important;
    transition: opacity 0.3s ease !important;
}

.social-share-float.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.social-share-float a.social-share-float__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    color: #888 !important;
    font-size: 17px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    line-height: 1 !important;
}

.social-share-float a.social-share-float__btn i {
    line-height: 1 !important;
}

.social-share-float a.social-share-float__btn--facebook:hover {
    background: #1877F2 !important;
    color: #fff !important;
}

.social-share-float a.social-share-float__btn--twitter:hover {
    background: #000 !important;
    color: #fff !important;
}

.social-share-float a.social-share-float__btn--linkedin:hover {
    background: #0A66C2 !important;
    color: #fff !important;
}

.social-share-float a.social-share-float__btn--whatsapp:hover {
    background: #25D366 !important;
    color: #fff !important;
}

/* Accessibilité : réduction des animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
