/* ====================================
   GLOBAL STYLES
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#00d4ff;
    --secondary:#6366f1;
    --success:#22c55e;
    --danger:#ef4444;
    --warning:#f59e0b;

    --dark:#0f172a;
    --dark2:#111827;
    --card:#1e293b;

    --text:#ffffff;
    --text-light:#cbd5e1;

    --border:rgba(255,255,255,.08);

    --shadow:
    0 10px 30px rgba(0,0,0,.25);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(
        135deg,
        #0f172a,
        #111827,
        #1e293b
    );

    color:var(--text);
    line-height:1.6;
}

/* ====================================
   CONTAINER
==================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ====================================
   HEADER
==================================== */

.header{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(15px);

    background:rgba(15,23,42,.85);

    border-bottom:1px solid var(--border);
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-box img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.logo-box h1{
    font-size:28px;
    font-weight:700;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #6366f1
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo-box p{
    color:var(--text-light);
}

.live-clock{
    text-align:center;

    padding:15px 30px;

    border:2px solid #22c55e;

    border-radius:15px;

    background:rgba(34,197,94,.08);
}

.live-clock span{
    color:#22c55e;
}

.live-clock h3{
    color:#22c55e;
    font-size:26px;
}

/* ====================================
   NOTICE BAR
==================================== */

.notice-bar{
    background:#facc15;
    color:#111827;

    overflow:hidden;
    padding:12px 0;
}

.notice-track{
    white-space:nowrap;

    font-weight:600;

    animation:scrollText 20s linear infinite;
}

@keyframes scrollText{
    from{
        transform:translateX(100%);
    }
    to{
        transform:translateX(-100%);
    }
}

/* ====================================
   HERO
==================================== */

.hero{
    padding:100px 0;
    text-align:center;
}

.hero h2{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    color:var(--text-light);
    font-size:20px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-whatsapp{

    padding:15px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary{
    background:linear-gradient(
        90deg,
        #00d4ff,
        #6366f1
    );

    color:white;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-whatsapp{
    background:#22c55e;
    color:white;
}

.btn-whatsapp:hover{
    transform:translateY(-3px);
}

/* ====================================
   CARD
==================================== */

.card{
    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:35px;

    box-shadow:var(--shadow);

    margin-bottom:35px;
}

.card h2{
    margin-bottom:25px;
}

/* ====================================
   FORM
==================================== */

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
}

input,
select,
textarea{

    width:100%;

    background:#0f172a;

    color:white;

    border:1px solid var(--border);

    border-radius:12px;

    padding:16px;

    font-size:16px;
}

textarea{
    min-height:120px;
    resize:none;
}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:var(--primary);
}

/* ====================================
   CALCULATOR
==================================== */

.rate-box{
    margin-top:15px;

    color:#22c55e;

    font-size:20px;

    font-weight:600;
}

.receive-box{

    margin-top:20px;

    border:2px solid #22c55e;

    padding:25px;

    border-radius:15px;

    text-align:center;
}

.receive-box h3{
    margin-bottom:10px;
}

#receiveAmount{
    font-size:40px;
    font-weight:700;
    color:#22c55e;
}

/* ====================================
   PAYMENT SECTION
==================================== */

.payment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.payment-card{

    background:#0f172a;

    padding:25px;

    border-radius:18px;

    border:1px solid var(--border);

    text-align:center;
}

.payment-card h3{
    margin-bottom:15px;
}

.payment-card p{
    font-size:28px;
    color:#00d4ff;
    margin-bottom:15px;
}

.copy-btn{

    background:#22c55e;

    border:none;

    color:white;

    padding:12px 25px;

    border-radius:10px;

    cursor:pointer;
}

/* ====================================
   ORDER FORM
==================================== */

#orderForm{
    display:grid;
    gap:18px;
}

#orderForm button{

    background:linear-gradient(
        90deg,
        #00d4ff,
        #6366f1
    );

    border:none;

    color:white;

    padding:18px;

    font-size:18px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;
}

/* ====================================
   TABLE
==================================== */

table{
    width:100%;
    border-collapse:collapse;
}

th,td{
    padding:18px;
    text-align:left;
}

th{
    color:#94a3b8;
}

tr{
    border-bottom:1px solid var(--border);
}

.success{
    color:#22c55e;
    font-weight:700;
}

.live-badge{

    background:#ef4444;

    color:white;

    padding:8px 15px;

    border-radius:8px;

    font-size:14px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:25px;
}

/* ====================================
   REVIEWS
==================================== */

.review-card{

    background:#0f172a;

    padding:25px;

    border-radius:18px;

    margin-top:20px;
}

.review-card h3{
    color:#00d4ff;
}

.stars{
    color:#facc15;
    margin:10px 0;
}

/* ====================================
   TRUST
==================================== */

.trust{
    padding:80px 0;
}

.trust-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap:25px;
}

.trust-grid div{

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    text-align:center;

    padding:35px;

    border-radius:20px;
}

.trust-grid i{

    font-size:40px;

    color:#00d4ff;

    margin-bottom:15px;
}

/* ====================================
   FOOTER
==================================== */

footer{

    text-align:center;

    padding:30px 0;

    border-top:1px solid var(--border);

    margin-top:40px;

    color:#94a3b8;
}

/* ====================================
   FLOATING BUTTONS
==================================== */

.floating{

    position:fixed;

    right:20px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    text-decoration:none;

    font-size:25px;

    box-shadow:var(--shadow);

    z-index:999;
}

.whatsapp{
    bottom:90px;
    background:#22c55e;
}

.messenger{
    bottom:20px;
    background:#1877f2;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:768px){

.header-inner{
    flex-direction:column;
    gap:20px;
}

.hero{
    padding:70px 0;
}

.hero h2{
    font-size:38px;
}

.hero p{
    font-size:16px;
}

.live-clock{
    width:100%;
}

.card{
    padding:20px;
}

table{
    display:block;
    overflow-x:auto;
}

#receiveAmount{
    font-size:30px;
}

.logo-box h1{
    font-size:22px;
}
}


.toast{
position:fixed;
top:20px;
right:20px;
background:#22c55e;
color:#fff;
padding:14px 20px;
border-radius:10px;
opacity:0;
transform:translateY(-20px);
transition:.3s;
z-index:9999;
}

.toast.show{
opacity:1;
transform:translateY(0);
}

