body{

    margin:0;
    padding:0;

    background:#f5f7fb;

    font-family:
    Poppins,
    sans-serif;

    overflow-x:hidden;

}

.money-page{

    padding:18px 0 40px;

}

.money-container{

    width:min(1180px,95%);
    margin:auto;

}

/* =========================================================
HERO
========================================================= */

.money-hero{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    padding:35px 30px;

    margin-bottom:20px;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    ),
    url('../images/money-exchange.webp');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.money-hero-grid{

    display:grid;
    grid-template-columns:1fr 320px;
    gap:20px;
    align-items:center;

}

.hero-content h1{

    font-size:42px;
    line-height:1.1;
    font-weight:900;

    margin-bottom:12px;

}

.hero-content p{

    font-size:14px;
    line-height:1.8;

    max-width:650px;

}

.hero-badges{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-top:18px;

}

.hero-badges span{

    padding:10px 14px;

    border-radius:50px;

    background:
    rgba(255,255,255,.14);

    border:
    1px solid rgba(255,255,255,.15);

    font-size:12px;
    font-weight:700;

}

/* =========================================================
RATE CARD
========================================================= */

.rate-card{

    background:#fff;

    border-radius:20px;

    padding:18px;

    color:#111827;

}

.rate-card h3{

    font-size:24px;
    font-weight:900;

    margin-bottom:14px;

}

.rate-item{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #f1f1f1;

}

.rate-item:last-child{

    border-bottom:none;

}

.rate-item span{

    font-size:13px;
    font-weight:700;

}

.rate-item strong{

    color:#ff2d55;

    font-size:17px;

}

/* =========================================================
LAYOUT
========================================================= */

.money-grid{

    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    gap:18px;

}

.money-card{

    background:#fff;

    border-radius:22px;

    padding:22px;

    box-shadow:
    0 8px 22px rgba(15,23,42,.05);

}

.section-title{

    font-size:25px;
    font-weight:900;

    margin-bottom:6px;

}

.section-subtitle{

    font-size:13px;
    line-height:1.7;

    color:#6b7280;

    margin-bottom:20px;

}

/* =========================================================
FORM
========================================================= */

.form-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;

}

.form-group{

    display:flex;
    flex-direction:column;

}

.form-label{

    font-size:12px;
    font-weight:800;

    margin-bottom:7px;

    color:#374151;

}

.form-control{

    width:100%;
    height:52px;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:0 14px;

    font-size:13px;

    transition:.25s;

    box-sizing:border-box;

    appearance:none;

    -webkit-appearance:none;

}

.form-control:focus{

    outline:none;

    border-color:#ff4d6d;

    box-shadow:
    0 0 0 4px rgba(255,77,109,.10);

}

/* MOBILE DATE FIX */

input[type="date"]{

    min-height:52px;

    font-size:14px;

    cursor:pointer;

}

input[type="date"]::-webkit-calendar-picker-indicator{

    cursor:pointer;

    opacity:1;

}

/* =========================================================
CONVERTER
========================================================= */

.converter-result{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:10px;

    flex-wrap:wrap;

    margin-top:18px;

    background:#fff7f8;

    border:1px dashed #ffb4c0;

    border-radius:16px;

    padding:16px;

    font-size:15px;
    font-weight:800;

}

.inr-value{

    color:#111827;

}

.equal-sign{

    color:#6b7280;

}

.exchange-value{

    color:#ff2d55;

    font-size:17px;

}

/* =========================================================
BUTTON
========================================================= */

.main-btn{

    width:100%;

    height:54px;

    border:none;

    border-radius:16px;

    margin-top:18px;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff006a
    );

    color:#fff;

    font-size:14px;
    font-weight:800;

    cursor:pointer;

}

/* =========================================================
BENEFITS
========================================================= */

.benefit-list{

    display:grid;
    gap:12px;

}

.benefit-item{

    background:#f9fafb;

    border-radius:16px;

    padding:14px;

    font-size:13px;
    font-weight:700;

}

/* =========================================================
SUCCESS POPUP
========================================================= */

.success-popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    display:flex;

    align-items:center;
    justify-content:center;

    z-index:99999;

    padding:20px;

}

.success-popup{

    width:100%;
    max-width:420px;

    background:#fff;

    border-radius:24px;

    padding:35px 24px;

    text-align:center;

    animation:popupFade .3s ease;

}

.success-icon{

    width:70px;
    height:70px;

    margin:auto auto 18px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #16a34a,
    #22c55e
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
    font-weight:900;

}

.success-popup h3{

    font-size:28px;
    font-weight:900;

    margin-bottom:10px;

    color:#111827;

}

.success-popup p{

    font-size:14px;
    line-height:1.8;

    color:#6b7280;

}

.success-btn{

    margin-top:20px;

    width:100%;

    height:52px;

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff006a
    );

    color:#fff;

    font-size:14px;
    font-weight:800;

    cursor:pointer;

}

@keyframes popupFade{

    from{

        opacity:0;
        transform:scale(.9);

    }

    to{

        opacity:1;
        transform:scale(1);

    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:991px){

    .money-grid,
    .money-hero-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .money-page{

        padding:10px 0 28px;

    }

    .money-hero{

        padding:24px 18px;

        border-radius:18px;

    }

    .hero-content{

        text-align:center;

    }

    .hero-content h1{

        font-size:28px;

    }

    .hero-badges{

        justify-content:center;

    }

    .money-card{

        padding:18px 15px;

        border-radius:18px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .form-control{

        font-size:16px;

    }

}