/*==============================
        GOOGLE FONT
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/*==============================
        ROOT COLORS
===============================*/

:root{

    --bg-main:#F7F2EC;
    --bg-overlay:#E8DCC7;
    --text-dark:#282118;
    --accent-gold:#B8860B;
    --soft-brown:#8B6F47;
    --white:#ffffff;
}

/*==============================
        RESET
===============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg-main);
    color:var(--text-dark);
    line-height:1.7;
}

/*==============================
        HEADER
===============================*/

header{

    background:var(--white);
    padding:30px;
    text-align:center;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

header h1{

    color:var(--accent-gold);
    font-size:2.5rem;
}

header p{

    margin-top:10px;
    color:var(--soft-brown);
}



.payment-steps{

    background:#fff8e6;

    border-left:6px solid #f4b400;

    padding:25px;

    border-radius:12px;

    margin:30px 0;

}

.payment-steps h2{

    margin-bottom:15px;

    color:#222;

}

.payment-intro{

    font-size:16px;

    line-height:1.7;

    margin-bottom:25px;

    color:#555;

}

.payment-steps ol{

    padding-left:25px;

}

.payment-steps li{

    margin-bottom:22px;

    line-height:1.8;

    font-size:16px;

}

.payment-steps li strong{

    color:#000;

    font-size:17px;

}

.important-note{

    margin-top:25px;

    padding:18px;

    background:#ffe8e8;

    border-left:5px solid red;

    border-radius:10px;

    font-weight:bold;

}

/*==============================
        MAIN
===============================*/

main{

    width:90%;
    max-width:1000px;
    margin:50px auto;
}

/*==============================
        SECTIONS
===============================*/

section{

    background:var(--white);
    margin-bottom:35px;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

section h2{

    color:var(--accent-gold);
    margin-bottom:20px;
    border-bottom:2px solid var(--bg-overlay);
    padding-bottom:10px;
}

section h3{

    margin-top:20px;
    color:var(--soft-brown);
}

/*==============================
        LISTS
===============================*/

ol,
ul{

    padding-left:25px;
}

li{

    margin:12px 0;
}

/*==============================
        ORDER SUMMARY
===============================*/

#ebook-name{

    font-size:1.3rem;
    font-weight:600;
    color:var(--soft-brown);
}

#ebook-price{

    font-size:2rem;
    color:var(--accent-gold);
    font-weight:bold;
}
.payment-details{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.payment-info{
    flex:1;
}

.copy-area{
    display:flex;
    align-items:center;
    justify-content:center;
}

#copy-btn{
    background:linear-gradient(
        135deg,
        #FFD700,
        #D4AF37
    );

    color:#1a1a1a;
    border:none;
    border-radius:50px;

    padding:18px 30px;

    font-size:1rem;
    font-weight:bold;

    cursor:pointer;

    box-shadow:
        0 0 10px rgba(212,175,55,0.8),
        0 0 20px rgba(212,175,55,0.6),
        0 0 40px rgba(212,175,55,0.4);

    transition:all 0.3s ease;
}

#copy-btn:hover{
    transform:translateY(-3px) scale(1.05);

    box-shadow:
        0 0 15px rgba(212,175,55,1),
        0 0 30px rgba(212,175,55,0.8),
        0 0 60px rgba(212,175,55,0.6);
}

/*==============================
        FORM
===============================*/

form{

    display:flex;
    flex-direction:column;
}

label{

    font-weight:600;
    margin-bottom:8px;
}

input[type="text"],
input[type="email"]{

    padding:14px;
    border:1px solid #d6cfc7;
    border-radius:8px;
    font-size:1rem;
    margin-bottom:20px;
    outline:none;
    transition:.3s;
}

input[type="text"]:focus,
input[type="email"]:focus{

    border-color:var(--accent-gold);
}

input[type="file"]{

    margin:15px 0 25px;
}

input[type="checkbox"]{

    margin-right:10px;
}

button{

    margin-top:30px;
    padding:15px;
    background:var(--accent-gold);
    color:white;
    border:none;
    border-radius:8px;
    font-size:1rem;
    cursor:pointer;
    transition:.3s;
}

button:hover{

    background:#9c7106;
    transform:translateY(-2px);
}

/*==============================
        PARAGRAPHS
===============================*/

p{

    margin-bottom:12px;
}

/*==============================
        HORIZONTAL LINE
===============================*/

hr{

    display:none;
}


.email-notice {
    margin: 25px 0;
    padding: 20px;
    text-align: center;
    background: #fff3cd;
    border: 2px solid #d4af37;
    border-radius: 10px;
}

.email-notice h4 {
    margin: 0 0 12px;
    color: #000;
    font-size: 18px;
    font-weight: 800;
}

.email-notice p {
    margin: 7px 0;
    color: #111;
    font-size: 15px;
    line-height: 1.5;
}

.email-notice strong {
    font-weight: 800;
}


.reference-notice {
    margin: 20px 0;
    padding: 18px 20px;
    background: #fff3cd;
    border: 2px solid #d4af37;
    border-left: 6px solid #d4af37;
    border-radius: 10px;
}

.reference-notice h4 {
    margin: 0 0 10px;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.reference-notice p {
    margin: 6px 0;
    color: #222;
    font-size: 14px;
    line-height: 1.5;
}

.reference-notice strong {
    font-weight: 800;
    color: #000;
}


/*==============================
        MOBILE
===============================*/

@media(max-width:768px){

header h1{

    font-size:2rem;
}

section{

    padding:25px;
}

main{

    width:95%;
}

button{

    width:100%;
}

}




/*==============================
        FILE INPUT
===============================*/

input[type="file"]{

    width:100%;
    padding:15px;
    margin-top:10px;
    margin-bottom:20px;
    border:2px dashed var(--bg-overlay);
    border-radius:10px;
    background:var(--bg-main);

}

input[type="file"]::file-selector-button{

    background:var(--accent-gold);
    color:var(--white);
    border:none;
    padding:12px 18px;
    border-radius:8px;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
    transition:.3s;

}

input[type="file"]::file-selector-button:hover{

    background:#9a7108;

}/*==============================
            FOOTER
===============================*/

footer{

    background:var(--text-dark);
    color:var(--white);
    padding:50px 10%;
    margin-top:60px;

}

/*==============================
        FOOTER LINKS
===============================*/

.footer-links{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:40px;
    margin-bottom:40px;

}

.footer-links h3{

    color:var(--accent-gold);
    margin-bottom:15px;

}

.footer-links ul{

    list-style:none;
    padding:0;

}

.footer-links li{

    margin:10px 0;

}

.footer-links a{

    color:var(--white);
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover{

    color:var(--accent-gold);
    padding-left:5px;

}

/*==============================
        SOCIAL ICONS
===============================*/

.social-icons{

    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;

}

.social-icons a{

    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;

    color:var(--white);

    border-radius:50%;
    font-size:1.3rem;

    text-decoration:none;
    transition:.3s;

}

.social-icons a:hover{

    background:var(--accent-gold);
    transform:translateY(-5px);

}

/*==============================
        COPYRIGHT
===============================*/

.copyright{

    text-align:center;
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:20px;
    font-size:.95rem;

}
.whatsapp{
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    border:2px solid #25D366;

    color:#25D366;

    box-shadow:
        0 0 10px #25D366,
        0 0 20px #25D366,
        0 0 30px rgba(37,211,102,.7);

    transition:.4s ease;
}

.whatsapp:hover{
    transform:translateY(-8px) scale(1.1);

    box-shadow:
        0 0 20px #25D366,
        0 0 40px #25D366,
        0 0 60px #25D366;

    background:#25D366;
    color:#120F0C;
}

.back-to-top{
    position:fixed;
    bottom:30px;
    right:30px;
    width:55px;
    height:55px;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

html{
    scroll-behavior:smooth;
}



.back-to-down{
    position:fixed;
    bottom:100px;
    right:30px;
    width:55px;
    height:55px;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

html{
    scroll-behavior:smooth;
}

/*=========================
    SUCCESS POPUP
=========================*/

.success-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.85);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999;
}

.popup-content{
    width:90%;
    max-width:500px;

    background:#15110D;
    border:2px solid #D4AF37;
    border-radius:20px;

    padding:40px;
    text-align:center;

    box-shadow:0 0 30px rgba(212,175,55,0.25);
}

.popup-content h2{
    color:#D4AF37;
    font-size:2rem;
    margin-bottom:20px;
    font-family:serif;
}

.popup-content p{
    color:#F5F0E6;
    line-height:1.8;
    margin-bottom:30px;
    font-size:1.1rem;
}






.fa-whatsapp{
    color:#D4AF37;
    font-size:1.7rem;
    margin-right:10px;

    text-shadow:
        0 0 5px #D4AF37,
        0 0 10px #D4AF37,
        0 0 20px #D4AF37,
        0 0 40px #D4AF37;

    animation:goldGlow 2s ease-in-out infinite alternate;
}


/* ================================
   WHATSAPP BUTTON
================================ */

.whatsapp-text{
    margin-top:20px;
    margin-bottom:18px;
    font-size:17px;
    color:#ffffff;
    text-align:center;
    line-height:1.6;
}

#whatsapp-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-top:10px;

    padding:18px 34px;

    background:#25D366;

    color:#ffffff;
    text-decoration:none;

    font-size:20px;
    font-weight:bold;

    border-radius:50px;

    box-shadow:
        0 0 12px #25D366,
        0 0 25px rgba(37,211,102,.55);

    transition:.3s ease;

    animation:bounceGlow 1.6s infinite;
}

#whatsapp-button:hover{

    transform:scale(1.08);

    box-shadow:
        0 0 18px #25D366,
        0 0 35px #25D366;

}

#whatsapp-button i{

    font-size:28px;

}

@keyframes bounceGlow{

    0%,100%{

        transform:translateY(0);
        box-shadow:
        0 0 12px #25D366,
        0 0 25px rgba(37,211,102,.55);

    }

    50%{

        transform:translateY(-8px);
        box-shadow:
        0 0 20px #25D366,
        0 0 40px #25D366;

    }

}


/*==============================
            MOBILE
===============================*/

@media(max-width:768px){

.footer-links{

    flex-direction:column;
    text-align:center;
    align-items:center;

}

.social-icons{

    margin-top:20px;

}

}
