body{

    background:#07152d;
    
    font-family:Inter,sans-serif;
    
    overflow-x:hidden;
    
    }
    
    .donHero{
    
    position:relative;
    
    min-height:100vh;
    
    display:grid;
    
    grid-template-columns:1.05fr .95fr;
    
    align-items:center;
    
    padding:90px 8%;
    
    overflow:hidden;
    
    background:
    
    radial-gradient(circle at top left,#1e58bb55,transparent 40%),
    
    radial-gradient(circle at bottom right,#d4af3735,transparent 35%),
    
    linear-gradient(135deg,#07152d,#0b2e63,#16499c);
    
    }
    
    .heroBackground{
    
    position:absolute;
    
    inset:0;
    
    background-image:
    
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
    
    background-size:60px 60px;
    
    }
    
    .heroGlow{
    
    position:absolute;
    
    width:700px;
    
    height:700px;
    
    border-radius:50%;
    
    background:radial-gradient(circle,#FFD54F33,transparent);
    
    right:-220px;
    
    top:-180px;
    
    filter:blur(40px);
    
    }
    
    .heroContent{
    
    position:relative;
    
    z-index:2;
    
    max-width:760px;
    
    }
    
    .heroBadge{
    
    display:inline-flex;
    
    align-items:center;
    
    gap:12px;
    
    padding:12px 25px;
    
    border-radius:50px;
    
    background:rgba(255,255,255,.12);
    
    backdrop-filter:blur(15px);
    
    color:#FFD54F;
    
    font-weight:800;
    
    margin-bottom:35px;
    
    }
    
    .heroContent h1{
    
    font-size:clamp(3.5rem,6vw,5.8rem);
    
    line-height:.95;
    
    color:white;
    
    font-weight:900;
    
    margin-bottom:35px;
    
    }
    
    .heroContent p{
    
    font-size:1.2rem;
    
    line-height:2;
    
    color:rgba(255,255,255,.9);
    
    margin-bottom:45px;
    
    }
    
    .heroButtons{
    
    display:flex;
    
    gap:25px;
    
    flex-wrap:wrap;
    
    margin-bottom:60px;
    
    }
    
    .primaryButton{
    
    padding:18px 35px;
    
    border-radius:50px;
    
    background:#FFD54F;
    
    color:#08224D;
    
    font-weight:800;
    
    transition:.35s;
    
    }
    
    .primaryButton:hover{
    
    transform:translateY(-6px);
    
    }
    
    .secondaryButton{
    
    padding:18px 35px;
    
    border-radius:50px;
    
    border:2px solid rgba(255,255,255,.25);
    
    color:white;
    
    transition:.35s;
    
    }
    
    .secondaryButton:hover{
    
    background:white;
    
    color:#0B2E63;
    
    }
    
    .heroStats{
    
    display:flex;
    
    gap:40px;
    
    flex-wrap:wrap;
    
    }
    
    .heroStats strong{
    
    display:block;
    
    font-size:2rem;
    
    color:#FFD54F;
    
    }
    
    .heroStats span{
    
    color:white;
    
    display:block;
    
    max-width:170px;
    
    margin-top:10px;
    
    line-height:1.5;
    
    }
    
    .heroVisual{
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    position:relative;
    
    z-index:2;
    
    }
    
    .heroVisual img{
    
    width:min(600px,100%);
    
    animation:floatHero 6s ease-in-out infinite;
    
    filter:drop-shadow(0 30px 80px rgba(0,0,0,.45));
    
    }
    
    @keyframes floatHero{
    
    0%,100%{
    
    transform:translateY(0);
    
    }
    
    50%{
    
    transform:translateY(-18px);
    
    }
    
    }
    
    @media(max-width:1100px){
    
    .donHero{
    
    grid-template-columns:1fr;
    
    text-align:center;
    
    gap:70px;
    
    }
    
    .heroButtons{
    
    justify-content:center;
    
    }
    
    .heroStats{
    
    justify-content:center;
    
    }
    
    }
    /*==================================================
IMPACT
==================================================*/

.impactSection{

    padding:150px 8%;
    
    background:white;
    
    }
    
    .sectionHeader{
    
    max-width:900px;
    
    margin:auto;
    
    text-align:center;
    
    margin-bottom:90px;
    
    }
    
    .sectionHeader span{
    
    display:inline-block;
    
    padding:10px 22px;
    
    border-radius:40px;
    
    background:#EDF4FF;
    
    color:#0B2E63;
    
    font-weight:700;
    
    margin-bottom:25px;
    
    }
    
    .sectionHeader h2{
    
    font-size:clamp(2.8rem,5vw,4.5rem);
    
    color:#0B2E63;
    
    margin-bottom:30px;
    
    }
    
    .sectionHeader p{
    
    font-size:1.15rem;
    
    line-height:2;
    
    color:#666;
    
    }
    
    .impactGrid{
    
    display:grid;
    
    grid-template-columns:repeat(2,1fr);
    
    gap:40px;
    
    max-width:1500px;
    
    margin:auto;
    
    }
    
    .impactCard{
    
    padding:45px;
    
    border-radius:30px;
    
    background:white;
    
    box-shadow:0 25px 70px rgba(0,0,0,.08);
    
    transition:.45s;
    
    cursor:pointer;
    
    position:relative;
    
    overflow:hidden;
    
    }
    
    .impactCard::before{
    
    content:"";
    
    position:absolute;
    
    left:0;
    
    top:0;
    
    width:100%;
    
    height:6px;
    
    background:#FFD54F;
    
    transform:scaleX(0);
    
    transition:.45s;
    
    transform-origin:left;
    
    }
    
    .impactCard:hover{
    
    transform:translateY(-15px);
    
    box-shadow:0 35px 80px rgba(0,0,0,.16);
    
    }
    
    .impactCard:hover::before{
    
    transform:scaleX(1);
    
    }
    
    .impactIcon{
    
    width:95px;
    
    height:95px;
    
    border-radius:50%;
    
    background:linear-gradient(135deg,#FFF3CF,#FFD54F);
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    font-size:40px;
    
    color:#0B2E63;
    
    margin-bottom:30px;
    
    }
    
    .impactCard h3{
    
    font-size:1.7rem;
    
    color:#0B2E63;
    
    margin-bottom:20px;
    
    }
    
    .impactCard p{
    
    line-height:1.9;
    
    color:#666;
    
    margin-bottom:35px;
    
    }
    
    .impactValue{
    
    margin-top:25px;
    
    }
    
    .impactValue span{
    
    display:block;
    
    font-size:3rem;
    
    font-weight:900;
    
    color:#0B2E63;
    
    }
    
    .impactValue small{
    
    font-size:1rem;
    
    color:#888;
    
    }
    
    @media(max-width:900px){
    
    .impactGrid{
    
    grid-template-columns:1fr;
    
    }
    
    }
    /*======================================
DONATION
======================================*/

.donationSection{

    padding:150px 8%;
    
    background:#F6F9FD;
    
    }
    
    .donContainer{
    
    display:grid;
    
    grid-template-columns:1.2fr .9fr;
    
    gap:60px;
    
    margin-top:80px;
    
    }
    
    .amountPanel,
    .paymentPanel{
    
    background:white;
    
    padding:45px;
    
    border-radius:30px;
    
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    
    }
    
    .amountPanel h3,
    .paymentPanel h3{
    
    font-size:2rem;
    
    margin-bottom:35px;
    
    color:#0B2E63;
    
    }
    
    .amountGrid{
    
    display:grid;
    
    grid-template-columns:repeat(2,1fr);
    
    gap:20px;
    
    }
    
    .amountCard{
    
    padding:30px;
    
    background:#fff;
    
    border:2px solid #E7EDF8;
    
    border-radius:22px;
    
    cursor:pointer;
    
    transition:.35s;
    
    }
    
    .amountCard:hover{
    
    transform:translateY(-8px);
    
    border-color:#FFD54F;
    
    }
    
    .amountCard.active{
    
    background:#0B2E63;
    
    color:white;
    
    border-color:#0B2E63;
    
    }
    
    .amountCard strong{
    
    display:block;
    
    font-size:2rem;
    
    margin-bottom:10px;
    
    }
    
    .customAmount{
    
    grid-column:1/-1;
    
    margin-top:15px;
    
    }
    
    .customAmount label{
    
    display:block;
    
    margin-bottom:12px;
    
    font-weight:700;
    
    }
    
    .customAmount input{
    
    width:100%;
    
    padding:18px;
    
    border-radius:16px;
    
    border:2px solid #E5EAF4;
    
    font-size:1rem;
    
    }
    
    .paymentCard{
    
    display:flex;
    
    align-items:center;
    
    justify-content:space-between;
    
    padding:22px;
    
    border:2px solid #EDF2F8;
    
    border-radius:20px;
    
    margin-bottom:20px;
    
    transition:.35s;
    
    }
    
    .paymentCard:hover{
    
    border-color:#FFD54F;
    
    transform:translateY(-5px);
    
    }
    
    .paymentCard img{
    
    width:65px;
    
    height:65px;
    
    object-fit:contain;
    
    margin-right:20px;
    
    }
    
    .paymentCard>div{
    
    flex:1;
    
    }
    
    .paymentCard strong{
    
    font-size:1.2rem;
    
    color:#0B2E63;
    
    }
    
    .paymentCard p{
    
    margin-top:6px;
    
    font-weight:700;
    
    color:#666;
    
    }
    
    .paymentCard i{
    
    font-size:26px;
    
    color:#24B35A;
    
    }
    
    .paymentInfo{
    
    margin:35px 0;
    
    padding:20px;
    
    border-radius:18px;
    
    background:#FFF9E5;
    
    line-height:1.8;
    
    color:#555;
    
    }
    
    .paymentInfo i{
    
    color:#D7A300;
    
    margin-right:10px;
    
    }
    
    @media(max-width:980px){
    
    .donContainer{
    
    grid-template-columns:1fr;
    
    }
    
    .amountGrid{
    
    grid-template-columns:1fr;
    
    }
    
    }
    /*==========================================
FORMULAIRE
==========================================*/

.donFormSection{

    padding:150px 8%;
    
    background:white;
    
    }
    
    .donForm{
    
    max-width:1200px;
    
    margin:auto;
    
    margin-top:70px;
    
    padding:50px;
    
    border-radius:30px;
    
    background:#fff;
    
    box-shadow:0 25px 70px rgba(0,0,0,.08);
    
    }
    
    .formGrid{
    
    display:grid;
    
    grid-template-columns:repeat(2,1fr);
    
    gap:30px;
    
    }
    
    .inputGroup{
    
    display:flex;
    
    flex-direction:column;
    
    }
    
    .inputGroup.full{
    
    grid-column:1/-1;
    
    }
    
    .inputGroup label{
    
    margin-bottom:10px;
    
    font-weight:700;
    
    color:#0B2E63;
    
    }
    
    .inputGroup input,
    .inputGroup textarea,
    .inputGroup select{
    
    padding:18px;
    
    border-radius:18px;
    
    border:2px solid #E7EDF7;
    
    font-size:1rem;
    
    transition:.30s;
    
    font-family:inherit;
    
    }
    
    .inputGroup input:focus,
    .inputGroup textarea:focus,
    .inputGroup select:focus{
    
    outline:none;
    
    border-color:#FFD54F;
    
    }
    
    .submitArea{
    
    margin-top:45px;
    
    text-align:center;
    
    }
    
    .donateButton{
    
    font-size:1.15rem;
    
    padding:20px 45px;
    
    cursor:pointer;
    
    border:none;
    
    }
    
    @media(max-width:900px){
    
    .formGrid{
    
    grid-template-columns:1fr;
    
    }
    
    }
    /*=========================
SUCCESS
=========================*/

.donLoader,
.donSuccess{

display:none;

text-align:center;

padding:80px 30px;

margin-top:50px;

border-radius:30px;

background:white;

box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.donLoader.show,
.donSuccess.show{

display:block;

animation:fadeSuccess .6s ease;

}

.loaderCircle{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

border:8px solid #EAEAEA;

border-top-color:#0B2E63;

animation:spinLoader 1s linear infinite;

margin-bottom:35px;

}

.successIcon{

font-size:90px;

color:#2DB55D;

margin-bottom:30px;

animation:popIcon .5s ease;

}

.receiptCard{

display:flex;

justify-content:center;

gap:40px;

flex-wrap:wrap;

margin:40px auto;

padding:30px;

border-radius:20px;

background:#F5F9FF;

max-width:700px;

}

.receiptCard span{

display:block;

font-size:.9rem;

color:#777;

margin-bottom:8px;

}

.receiptCard strong{

font-size:1.2rem;

color:#0B2E63;

}

.successButtons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-top:40px;

}

@keyframes spinLoader{

100%{

transform:rotate(360deg);

}

}

@keyframes popIcon{

0%{

transform:scale(.2);

opacity:0;

}

100%{

transform:scale(1);

opacity:1;

}

}

@keyframes fadeSuccess{

from{

opacity:0;

transform:translateY(25px);

}

to{

opacity:1;

transform:translateY(0);

}

}
/*==========================
UPLOAD PREMIUM
==========================*/

.uploadBox{

    position:relative;
    
    display:flex;
    
    flex-direction:column;
    
    align-items:center;
    
    justify-content:center;
    
    gap:12px;
    
    padding:45px 30px;
    
    border:3px dashed #C8D7F0;
    
    border-radius:24px;
    
    background:#F8FBFF;
    
    cursor:pointer;
    
    transition:.35s;
    
    text-align:center;
    
    }
    
    .uploadBox:hover{
    
    border-color:#0B2E63;
    
    background:#EDF5FF;
    
    transform:translateY(-3px);
    
    }
    
    .uploadBox input{
    
    display:none;
    
    }
    
    .uploadBox i{
    
    font-size:52px;
    
    color:#0B2E63;
    
    }
    
    .uploadBox h4{
    
    margin:0;
    
    font-size:1.2rem;
    
    color:#0B2E63;
    
    }
    
    .uploadBox p{
    
    margin:0;
    
    color:#777;
    
    }
    
    #selectedFile{
    
    margin-top:12px;
    
    padding:8px 18px;
    
    border-radius:40px;
    
    background:#0B2E63;
    
    color:white;
    
    font-size:.9rem;
    
    font-weight:600;
    
    max-width:100%;
    
    word-break:break-word;
    
    }
    .paymentCard{

        cursor:pointer;
        
        position:relative;
        
        }
        
        .paymentCard input{
        
        display:none;
        
        }
        
        .paymentCheck{
        
        width:34px;
        
        height:34px;
        
        border-radius:50%;
        
        border:2px solid #B8C7E3;
        
        display:flex;
        
        align-items:center;
        
        justify-content:center;
        
        color:transparent;
        
        transition:.3s;
        
        }
        
        .paymentCard:has(input:checked){
        
        border-color:#0B2E63;
        
        background:#EEF5FF;
        
        box-shadow:0 12px 30px rgba(11,46,99,.15);
        
        }
        
        .paymentCard:has(input:checked) .paymentCheck{
        
        background:#0B2E63;
        
        border-color:#0B2E63;
        
        color:white;
        
        }
        /*==========================
AUTRE MONTANT
==========================*/

.customAmountGrid{

    display:grid;
    
    grid-template-columns:220px 1fr;
    
    gap:20px;
    
    margin-top:15px;
    
    }
    
    .smallLabel{
    
    display:block;
    
    margin-bottom:10px;
    
    font-size:.95rem;
    
    font-weight:700;
    
    color:#0B2E63;
    
    }
    
    .customAmountGrid select,
    .customAmountGrid input{
    
    width:100%;
    
    padding:18px;
    
    border:2px solid #E5EAF4;
    
    border-radius:16px;
    
    font-size:1rem;
    
    font-family:inherit;
    
    transition:.3s;
    
    background:white;
    
    }
    
    .customAmountGrid select:focus,
    .customAmountGrid input:focus{
    
    outline:none;
    
    border-color:#FFD54F;
    
    box-shadow:0 0 0 4px rgba(255,213,79,.18);
    
    }
    
    .currencyInfo{
    
    margin-top:18px;
    
    padding:14px 18px;
    
    background:#FFF8E3;
    
    border-left:5px solid #FFD54F;
    
    border-radius:12px;
    
    color:#555;
    
    line-height:1.7;
    
    }
    
    @media(max-width:700px){
    
    .customAmountGrid{
    
    grid-template-columns:1fr;
    
    }
    
    }