/*==========================================================
ARENASA
FOOTER
Version 1.0
PART 1
==========================================================*/

/*==========================================================
FOOTER
==========================================================*/

.footer{

    position:relative;

    overflow:hidden;

    padding:100px 0 0;

    background:

        radial-gradient(
            circle at top left,
            rgba(42,110,73,.14),
            transparent 40%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(212,175,55,.06),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            #08120D 0%,
            #06100B 45%,
            #030705 100%
        );

}

/*==========================================================
BACKGROUND EFFECT
==========================================================*/

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:

        radial-gradient(

            circle at left center,

            rgba(32,95,63,.10),

            transparent 40%

        ),

        radial-gradient(

            circle at right top,

            rgba(212,175,55,.05),

            transparent 30%

        );

}

.footer::after{

    content:"";

    position:absolute;

    inset:0;

    opacity:.03;

    pointer-events:none;

    background-image:

        radial-gradient(#ffffff 1px,transparent 1px);

    background-size:12px 12px;

}

/*==========================================================
CONTAINER
==========================================================*/

.footer .container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;

    padding:0 30px;

}

/*==========================================================
GRID
==========================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.2fr
        1.3fr;

    gap:45px;

    padding-bottom:70px;

}

/*==========================================================
COLUMN
==========================================================*/

.footer-col{

    display:flex;

    flex-direction:column;

}

.footer-col h4{

    margin:0 0 24px;

    color:#FFFFFF;

    font-size:22px;

    font-weight:700;

    position:relative;

}

.footer-col h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    border-radius:10px;

    background:#D4AF37;

}

/*==========================================================
LOGO
==========================================================*/

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-tagline{

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.footer-company p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    font-size:15px;

}

/*==========================================================
ARENASA
FOOTER
PART 2
MENU • CONTACT • OFFICE
==========================================================*/

/*==========================================================
LIST
==========================================================*/

.footer-col ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-col ul li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

    color:rgba(255,255,255,.78);

    line-height:1.7;

    transition:.30s;

}

/*==========================================================
LINK
==========================================================*/

.footer-col ul li a{

    color:rgba(255,255,255,.78);

    text-decoration:none;

    transition:.30s;

}

.footer-col ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

/*==========================================================
MENU ICON
==========================================================*/

.footer-col ul li::before{

    content:"›";

    color:#D4AF37;

    font-size:18px;

    font-weight:bold;

    flex-shrink:0;

}

.footer-contact li::before,

.footer-office li::before{

    display:none;

}

/*==========================================================
CONTACT
==========================================================*/

.footer-contact li{

    align-items:flex-start;

}

.footer-contact i{

    width:20px;

    margin-top:4px;

    color:#D4AF37;

    text-align:center;

    flex-shrink:0;

    font-size:16px;

}

/*==========================================================
OFFICE
==========================================================*/

.footer-office li{

    margin-bottom:12px;

}

.footer-office strong{

    color:#FFFFFF;

    font-weight:700;

}

/*==========================================================
OFFICE NOTE
==========================================================*/

.footer-office-note{

    margin-top:20px;

    padding:18px;

    border-radius:16px;

    background:rgba(212,175,55,.06);

    border:1px solid rgba(212,175,55,.18);

    color:rgba(255,255,255,.78);

    font-size:14px;

    line-height:1.8;

}

.footer-office-note i{

    color:#D4AF37;

    margin-right:8px;

}

/*==========================================================
CERTIFICATION
==========================================================*/

.footer-certification{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:25px;

    padding:40px 0;

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-certification img{

    height:58px;

    width:auto;

    object-fit:contain;

    opacity:.80;

    filter:grayscale(20%);

    transition:.35s;

}

.footer-certification img:hover{

    opacity:1;

    transform:translateY(-6px);

    filter:none;

}

/*==========================================================
BOTTOM
==========================================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:28px 0;

    color:rgba(255,255,255,.70);

    font-size:14px;

}

.footer-bottom strong{

    color:#D4AF37;

}

/*==========================================================
ARENASA
FOOTER
PART 3
HOVER • BACK TO TOP • RESPONSIVE
==========================================================*/

/*==========================================================
COLUMN HOVER
==========================================================*/

.footer-col{

    transition:
        transform .35s ease;

}

.footer-col:hover{

    transform:translateY(-6px);

}

.footer-col:hover h4{

    color:#D4AF37;

}

.footer-col:hover h4::after{

    width:70px;

    transition:.35s;

}

/*==========================================================
LINK HOVER
==========================================================*/

.footer-col ul li:hover{

    color:#FFFFFF;

}

.footer-contact li:hover i{

    transform:scale(1.15);

    color:#FFD86A;

    transition:.30s;

}

.footer-office-note:hover{

    background:rgba(212,175,55,.10);

    border-color:rgba(212,175,55,.35);

}

/*==========================================================
LOGO
==========================================================*/

.footer-logo{

    transition:.35s;

}

.footer-logo:hover{

    transform:scale(1.05);

}

/*==========================================================
BACK TO TOP
==========================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #D4AF37,
        #F2D87A
    );

    color:#10241B;

    text-decoration:none;

    font-size:18px;

    z-index:999;

    box-shadow:
        0 18px 40px rgba(212,175,55,.35);

    transition:all .35s ease;

}

.back-to-top:hover{

    transform:translateY(-6px);

    box-shadow:
        0 28px 60px rgba(212,175,55,.45);

}

/*==========================================================
REVEAL
==========================================================*/

.footer{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.footer.show{

    opacity:1;

    transform:translateY(0);

}

/*==========================================================
RESPONSIVE 1200
==========================================================*/

@media(max-width:1200px){

    .footer-grid{

        grid-template-columns:
            repeat(3,1fr);

        gap:40px;

    }

}

/*==========================================================
RESPONSIVE 992
==========================================================*/

@media(max-width:992px){

    .footer{

        padding-top:80px;

    }

    .footer-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}

/*==========================================================
RESPONSIVE 768
==========================================================*/

@media(max-width:768px){

    .footer .container{

        padding:0 20px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-logo{

        width:170px;

    }

    .footer-certification{

        gap:18px;

    }

    .footer-certification img{

        height:46px;

    }

    .back-to-top{

        width:50px;

        height:50px;

        right:20px;

        bottom:20px;

    }

}

/*==========================================================
RESPONSIVE 576
==========================================================*/

@media(max-width:576px){

    .footer{

        padding-top:70px;

    }

    .footer .container{

        padding:0 18px;

    }

    .footer-col h4{

        font-size:20px;

    }

    .footer-company p{

        font-size:14px;

    }

    .footer-col ul li{

        font-size:14px;

    }

    .footer-office-note{

        font-size:13px;

        padding:15px;

    }

    .footer-certification{

        padding:30px 0;

        gap:15px;

    }

    .footer-certification img{

        height:40px;

    }

}

/*==========================================================
RESPONSIVE 420
==========================================================*/

@media(max-width:420px){

    .footer-logo{

        width:150px;

    }

    .footer-tagline{

        font-size:13px;

    }

    .footer-bottom{

        font-size:13px;

    }

    .back-to-top{

        width:46px;

        height:46px;

        font-size:16px;

    }

}

/*==========================================================
END
==========================================================*/