.footer{

    position:relative;

    overflow:hidden;

    padding:120px 20px 40px;

    background:linear-gradient(180deg,#04070d,#020406);

}

.footer-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    gap:70px;

    align-items:center;

}

@media(min-width:950px){

.footer-container{

grid-template-columns:1.2fr .8fr;

}

}

/************************/

.footer-tag{

    color:#FFD54A;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.85rem;

}

.footer h2{

    color:#fff;

    font-size:clamp(2.2rem,5vw,4rem);

    margin:20px 0;

    line-height:1.1;

}

.footer p{

    color:#bfc7d1;

    line-height:1.8;

    max-width:650px;

}

/************************/

.footer-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin:40px 0;

}

.footer-call{

    text-decoration:none;

    background:linear-gradient(135deg,#FFD54A,#ff9800);

    color:#111;

    font-weight:bold;

    padding:18px 32px;

    border-radius:60px;

    transition:.35s;

}

.footer-call:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(255,193,7,.35);

}

.footer-contact{

    text-decoration:none;

    color:white;

    padding:18px 32px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

}

.footer-contact:hover{

    background:rgba(255,255,255,.10);

}

/************************/

.footer-info{

    display:grid;

    gap:20px;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

}

.footer-info div{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    padding:20px;

    border-radius:22px;

}

.footer-info strong{

    display:block;

    color:white;

    margin-bottom:8px;

}

.footer-info span{

    color:#c7d1dc;

}

/************************/

.footer-logo{

    display:flex;

    justify-content:center;

    align-items:center;

}

.logo-glass{

    width:340px;

    height:340px;

    border-radius:40px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:

    inset 0 1px 1px rgba(255,255,255,.20),

    0 35px 70px rgba(0,0,0,.45);

    animation:floatLogo 7s ease-in-out infinite;

}

.logo-glass img{

    width:75%;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));

}

/************************/

.footer-bottom{

    margin-top:90px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;

    max-width:1300px;

    margin-inline:auto;

}

.footer-bottom span{

    color:#8c99a7;

}

.footer-bottom a{

    color:#8c99a7;

    text-decoration:none;

    margin-left:25px;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#FFD54A;

}

/************************/

.footer-glow{

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    filter:blur(140px);

    opacity:.25;

}

.glow-left{

    background:#00a6ff;

    left:-180px;

    top:80px;

}

.glow-right{

    background:#ffc107;

    right:-180px;

    bottom:80px;

}

@keyframes floatLogo{

0%,100%{

transform:translateY(0) rotate(0deg);

}

50%{

transform:translateY(-15px) rotate(1deg);

}

}