@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sansation Bold';
    src: url('../fonts/Sansation_Bold 4.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    overflow-x: hidden;
}

body{
    font-family: 'Gotham Book', Arial, Helvetica, sans-serif;
    color:#082b57;
    background:#f5f5f5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Sansation Bold', Arial, sans-serif;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

/* BENEFIT MODALS (shared) */
.benefit-modal{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.benefit-modal.is-open{
    display: flex;
}

.benefit-modal-overlay{
    position: absolute;
    inset: 0;
    background: rgba(8, 43, 87, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.benefit-modal-box{
    position: relative;
    background: #fff;
    border-radius: 14px;
    max-width: 540px;
    width: 100%;
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
}

@keyframes modalSlideIn{
    from{ opacity: 0; transform: scale(0.88) translateY(20px); }
    to{   opacity: 1; transform: scale(1)    translateY(0);    }
}

.benefit-modal-close{
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #8ed000;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: background 0.2s, transform 0.2s;
    z-index: 1;
}

.benefit-modal-close:hover{
    background: #7ab800;
    transform: scale(1.1);
}

.benefit-modal-inner{
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 120px;
}

.benefit-modal-left{
    flex-shrink: 0;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-modal-left img{
    width: 95px;
    height: 95px;
    object-fit: contain;
    display: block;
}

.benefit-modal-sep{
    flex-shrink: 0;
    width: 2px;
    height: 90px;
    background: #8ed000;
    border-radius: 2px;
    margin: 0 32px;
}

.benefit-modal-right{
    flex: 1;
    display: flex;
    align-items: center;
}

.benefit-modal-text{
    color: #444;
    font-size: 15px;
    line-height: 1.75;
    text-align: center;
    width: 100%;
}

.benefit-modal-text p + p{
    margin-top: 12px;
}

@media(max-width: 576px){
    .benefit-modal-box{
        padding: 30px 20px;
    }

    .benefit-modal-inner{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .benefit-modal-left{
        width: auto;
    }

    .benefit-modal-left img{
        width: 70px;
        height: 70px;
    }

    .benefit-modal-sep{
        width: 60px;
        height: 2px;
        margin: 0;
    }

    .benefit-modal-right{
        justify-content: center;
    }

    .benefit-modal-text{
        font-size: 14px;
    }
}

/* FOOTER */
.footer{
    background: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-left{
    flex-shrink: 0;
}

.footer-logo{
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.socials{
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.socials a{
    width: 38px;
    height: 38px;
    background: #0a2f82;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.socials a:hover{
    background: #08256b;
    transform: translateY(-2px);
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a{
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-links a:hover{
    color: #0a2f82;
}

.footer-right{
    text-align: right;
    max-width: 600px;
}

.footer-contact{
    margin-bottom: 25px;
}

.footer-contact h4{
    color: #0a2f82;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-contact p{
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-email{
    margin-top: 30px;
}

.footer-email a{
    color: #0a2f82;
    font-size: 16px;
    font-weight: 700;
}

.footer-copy{
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-copy p{
    color: #666;
    font-size: 13px;
    font-weight: 400;
}

/* RESPONSIVE FOOTER */
@media(max-width:992px){
    .footer-wrapper{
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-right{
        text-align: left;
        max-width: 100%;
    }
    
    .footer-left{
        width: 100%;
    }
}

@media(max-width:576px){
    .footer{
        padding: 40px 0 25px;
    }
    
    .footer-logo{
        width: 150px;
    }
    
    .socials a{
        width: 34px;
        height: 34px;
    }
    
    .footer-contact h4{
        font-size: 15px;
    }
    
    .footer-contact p{
        font-size: 13px;
    }
    
    .footer-copy p{
        font-size: 12px;
        padding: 0 15px;
    }
}