/* ==========================
   GLOBAL
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/* ==========================
   HEADER
========================== */

.main-header{
    background:#000;
    width:100%;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 25px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ==========================
   LOGO
========================== */

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    gap:18px;
    flex-shrink:0;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo span{
    color:#fff;
    font-size:22px;
    font-weight:500;
    white-space:nowrap;
}
/* ==========================
   DESKTOP MENU
========================== */

.desktop-nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:50px;
}

.desktop-nav a{
    position:relative;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:.3s ease;
}

.desktop-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#00cfff;
    transition:.3s ease;
}

.desktop-nav a:hover{
    color:#00cfff;
}

.desktop-nav a:hover::after{
    width:100%;
}

/* ==========================
   MOBILE TOGGLE
========================== */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:10001;
}

.menu-toggle span{
    width:28px;
    height:2px;
    background:#fff;
    transition:.3s ease;
}

/* ==========================
   TOGGLE ANIMATION
========================== */

.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    max-width:100%;
    height:100vh;
    background:#050505;
    transition:right .4s ease;
    z-index:9999;
    overflow-y:auto;
    box-shadow:-5px 0 25px rgba(0,0,0,.4);
}

.mobile-menu.active{
    right:0;
}

/* Mobile Header */

.mobile-menu-header{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.close-menu{
    background:none;
    border:none;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    line-height:1;
    transition:.3s ease;
}

.close-menu:hover{
    color:#00cfff;
    transform:rotate(90deg);
}

/* Mobile Navigation */

.mobile-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-menu ul li{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-menu ul li a{
    display:block;
    padding:18px 22px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s ease;
}

.mobile-menu ul li a:hover{
    background:#00cfff;
    color:#000;
    padding-left:28px;
}

/* ==========================
   OVERLAY
========================== */

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:9998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:1200px){

    .desktop-nav ul{
        gap:30px;
    }

    .desktop-nav a{
        font-size:16px;
    }

    .logo span{
        font-size:20px;
    }

}

@media (max-width:991px){

    .desktop-nav{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .container{
        height:80px;
        padding:0 15px;
    }

    .logo img{
        width:40px;
        height:40px;
    }

    .logo span{
        font-size:14px;
        max-width:220px;
        line-height:1.3;
    }

}

@media (max-width:480px){

    .mobile-menu{
        width:100%;
    }

    .logo{
        gap:10px;
    }

    .logo span{
        font-size:12px;
        max-width:180px;
    }

    .close-menu{
        font-size:30px;
    }

    .mobile-menu ul li a{
        font-size:15px;
        padding:16px 18px;
    }

}
/* =========================
   FOOTER
========================= */

.footer{
    position:relative;
    background:#000;
    overflow:hidden;
}

/* Glow Effect */

.footer::before{
    content:"";
    position:absolute;
    bottom:-250px;
    left:50%;
    transform:translateX(-50%);
    width:900px;
    height:500px;
    background:radial-gradient(
        circle,
        rgba(0,255,220,.25) 0%,
        rgba(0,255,220,.08) 40%,
        transparent 75%
    );
    pointer-events:none;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    padding:60px 30px 80px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:70px;
    position:relative;
    z-index:2;
}

/* Logo */

.footer-logo{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:35px;
}

.footer-logo img{
    width:55px;
}

.footer-logo h2{
    color:#fff;
    font-size:24px;
    font-weight:600;
    line-height:1.3;
}

.footer-about p{
    color:#00f5e1;
    font-size:18px;
    line-height:2;
    max-width:520px;
}

/* Headings */

.footer-col h3{
    color:#fff;
    font-size:22px;
    margin-bottom:35px;
    font-weight:600;
}

/* Links */

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:22px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#f3f3f3;
    font-size:17px;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#00f5e1;
    padding-left:5px;
}

/* Contact */

.contact-info li{
    color:#00f5e1;
    font-size:17px;
    line-height:1.8;
}
/* ==========================
   PAYMENT METHODS
========================== */

.payment-methods{
    margin-top:40px;
}

.payment-methods h4{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}

.payment-icons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
}

.payment-icons img{
    width:65px;
    height:40px;
    object-fit:contain;
    background:#fff;
    border-radius:6px;
    padding:6px;
    transition:.3s ease;
}

.payment-icons img:hover{
    transform:translateY(-3px);
}

/* Tablet */

@media (max-width:768px){

    .payment-methods{
        text-align:center;
    }

    .payment-icons{
        justify-content:center;
    }

    .payment-icons img{
        width:60px;
        height:38px;
    }

}

/* Mobile */

@media (max-width:480px){

    .payment-icons{
        gap:10px;
    }

    .payment-icons img{
        width:55px;
        height:35px;
        padding:5px;
    }

}
/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:28px 20px;
    text-align:center;
    position:relative;
    z-index:2;
}

.footer-bottom p{
    color:#fff;
    font-size:18px;
    margin:0;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }
}

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        padding:50px 20px;
        gap:40px;
    }

    .footer-logo{
        justify-content:center;
        text-align:center;
        flex-direction:column;
    }

    .footer-about{
        text-align:center;
    }

    .footer-about p{
        max-width:100%;
        font-size:16px;
    }

    

    .footer-col{
        text-align:center;
    }

    .footer-col h3{
        margin-bottom:20px;
    }


    .footer-bottom p{
        font-size:15px;
        line-height:1.8;
    }
}

@media(max-width:480px){

    .footer-logo h2{
        font-size:18px;
    }

    

    .footer-col h3{
        font-size:20px;
    }

    .footer-col ul li a,
    .contact-info li{
        font-size:15px;
    }
}