/* ===== RESET ===== */
/* ===== RESET COMPLET ===== */

html,
body{
    width:100%;
    overflow-x:hidden;
}

body{
    display:block !important;
    position:relative !important;
    margin:0;
    padding:0;
}

main{
    width:100%;
    display:block;
}

section{
    width:100%;
    position:relative;
}

div,
section,
article,
main,
header,
footer,
nav{
    box-sizing:border-box;
}

/* FORCE ALIGNEMENT */

.passport-hero,
.steps-section,
.whatsapp-section,
.verification-section,
.payment-section,
.trust-section{
    width:100%;
    max-width:100%;
    margin:auto;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{
    font-family:'Inter',sans-serif;
    background:#0a0a0a;
    color:white;
    overflow-x:hidden;
}

/* ===== VIDEO BG ===== */
.video-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;
}

.video-bg video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
}

/* ===== HEADER ===== */
header{
    width:100%;
    padding:20px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,215,0,0.2);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo h1{
    color:#ffd700;
    font-size:1.8rem;
    font-family:'Playfair Display',serif;
}

.logo p{
    color:#ccc;
    font-size:0.85rem;
}

nav{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:0.95rem;
    transition:0.3s;
}

nav a:hover{
    color:black;
}

.lang-selector{
    display:flex;
    gap:10px;
}

.lang-selector a{
    color:white;
    text-decoration:none;
    padding:6px 12px;
    border:1px solid #ffd700;
    border-radius:5px;
    transition:0.3s;
}

.lang-selector a:hover,
.lang-selector .active{
    background:#ffd700;
    color:black;
}

/* ===== HERO ===== */
.passport-hero{
    text-align:center;
    padding:100px 20px 60px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,215,0,0.1);
    border:1px solid #ffd700;
    padding:10px 20px;
    border-radius:30px;
    color:#ffd700;
    margin-bottom:30px;
}

.hero-title{
    font-size:4rem;
    font-family:'Playfair Display',serif;
    line-height:1.2;
}

.gold-text{
    color:#ffd700;
}

.hero-subtitle{
    margin-top:20px;
    color:#ddd;
    font-size:1.1rem;
    line-height:1.8;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-top:50px;
    flex-wrap:wrap;
}

.stat-item{
    text-align:center;
}

.stat-number{
    display:block;
    font-size:2.5rem;
    font-weight:bold;
    color:#ffd700;
}

.stat-label{
    color:#bbb;
}

/* ===== TITRES ===== */
.section-title{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.section-desc{
    text-align:center;
    color:#ccc;
    margin-bottom:40px;
}

.section-badge{
    display:table;
    margin:0 auto 20px;
    background:#ffd700;
    color:black;
    padding:8px 18px;
    border-radius:30px;
    font-weight:bold;
}

/* ===== STEPS ===== */
.steps-section{
    padding:80px 5%;
}

.steps-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.step-item{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,215,0,0.2);
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
}

.step-item:hover{
    transform:translateY(-8px);
    border-color:#ffd700;
}

.step-icon{
    font-size:3rem;
    margin-bottom:20px;
}

.step-item h3{
    color:#ffd700;
    margin-bottom:15px;
}

.step-item p{
    color:#ccc;
    line-height:1.7;
}

.step-connector{
    display:none;
}

/* ===== WHATSAPP ===== */
.whatsapp-section{
    padding:80px 5%;
}

.whatsapp-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:40px;
}

.whatsapp-card,
.documents-checklist,
.verification-card,
.payment-form-container,
.trust-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,215,0,0.2);
    border-radius:20px;
    padding:35px;
    backdrop-filter:blur(10px);
}

.whatsapp-card{
    text-align:center;
}

.whatsapp-card h3{
    color:#25D366;
    margin:20px 0;
}

.whatsapp-card p{
    color:#ccc;
    margin-bottom:25px;
}

.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:black;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:bold;
    transition:0.3s;
}

.btn-whatsapp:hover{
    transform:scale(1.05);
}

.upload-area{
    margin-top:25px;
}

.upload-label-custom{
    border:2px dashed #ffd700;
    padding:30px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.upload-label-custom span{
    color:#ffd700;
}

.upload-hint{
    color:#999 !important;
    font-size:0.8rem;
}

.documents-checklist h3{
    color:#ffd700;
    margin-bottom:20px;
}

.documents-checklist ul{
    list-style:none;
}

.check-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 0;
    color:#ddd;
}

/* ===== VERIFICATION ===== */
.verification-section{
    padding:80px 5%;
}

.verification-card{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.verif-header{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.verif-header h3{
    color:#ffd700;
}

.verif-countdown{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.countdown-item-big{
    text-align:center;
}

.countdown-item-big span{
    font-size:4rem;
    color:#25D366;
    font-weight:bold;
}

.countdown-sep-big{
    font-size:3rem;
    color:#25D366;
}

.verif-controls{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-gold{
    background:#ffd700;
    color:black;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:bold;
    cursor:pointer;
}

.btn-outline{
    background:transparent;
    border:1px solid #ffd700;
    color:#ffd700;
    padding:15px 35px;
    border-radius:50px;
    cursor:pointer;
}

/* ===== PAYMENT ===== */
.payment-section{
    padding:80px 5%;
}

.payment-lock-card,
.payment-unlock-card{
    max-width:600px;
    margin:30px auto;
    text-align:center;
    padding:30px;
    border-radius:20px;
}

.payment-lock-card{
    background:rgba(255,0,0,0.08);
    border:1px solid rgba(255,0,0,0.3);
}

.payment-unlock-card{
    background:rgba(37,211,102,0.08);
    border:1px solid rgba(37,211,102,0.3);
}

.passport-form{
    margin-top:30px;
}

.form-row-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:20px;
}

.form-row-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    color:#ffd700;
}

.form-group input,
.form-group select{
    padding:14px;
    border:none;
    border-radius:10px;
    background:#111;
    color:white;
}

.form-divider{
    text-align:center;
    margin:30px 0;
    color:#ffd700;
}

.form-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:30px;
}

.secure-badge{
    color:#25D366;
}

.success-msg-big{
    margin-top:30px;
    background:rgba(37,211,102,0.08);
    border:1px solid #25D366;
    padding:25px;
    border-radius:20px;
    text-align:center;
    color:#25D366;
}

/* ===== TRUST ===== */
.trust-section{
    padding:80px 5%;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.trust-card{
    text-align:center;
    transition:0.3s;
}

.trust-card:hover{
    transform:translateY(-8px);
    border-color:#ffd700;
}

.trust-card h3{
    margin:20px 0 10px;
    color:#ffd700;
}

.trust-card p{
    color:#ccc;
    line-height:1.6;
}

/* ===== FOOTER ===== */
footer{
    text-align:center;
    padding:30px;
    background:rgba(0,0,0,0.8);
    border-top:1px solid rgba(255,215,0,0.2);
    color:#aaa;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .whatsapp-grid{
        grid-template-columns:1fr;
    }

    .form-row-3,
    .form-row-2{
        grid-template-columns:1fr;
    }

    .hero-title{
        font-size:2.5rem;
    }

    nav{
        justify-content:center;
    }

    header{
        flex-direction:column;
        gap:20px;
    }
}

@media(max-width:600px){

    .hero-title{
        font-size:2rem;
    }

    .hero-subtitle{
        font-size:1rem;
    }

    .countdown-item-big span{
        font-size:2.5rem;
    }

    .countdown-sep-big{
        font-size:2rem;
    }

    .form-footer{
        flex-direction:column;
    }
}