/* CONTACT CTA SECTION */

.contact-cta{
    padding:120px 20px;
    display:flex;
    justify-content:center;
}

.contact-box{
    max-width:1100px;
    width:100%;
    padding:90px 60px;
    text-align:center;

    border-radius:40px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8,
        #10b981
    );

    position:relative;
}

.contact-title{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
    color:white;
}

.contact-desc{
    font-size:18px;
    color:#e2e8f0;
    margin-bottom:40px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-demo-primary{
    background:white;
    color:#2563eb;
    padding:16px 32px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
}

.btn-demo-secondary{
    border:1px solid rgba(255,255,255,0.6);
    padding:16px 32px;
    border-radius:40px;
    color:white;
    text-decoration:none;
}

.btn-demo-secondary:hover{
    background:rgba(255,255,255,0.1);
}

/* CONTACT PAGE FOOTER */

.contact-footer{
    padding:35px 20px 15px;
}

/* Main footer layout */

.footer-container{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    gap:40px;
}

/* Left side */

.footer-left{
    max-width:260px;
}

.footer-desc{
    margin-top:8px;
    color:#94a3b8;
    line-height:1.5;
    font-size:15px;
}

/* Link columns */

.footer-links{
    display:contents;
}

.footer-col h4{
    margin-bottom:12px;
    font-size:13px;
    letter-spacing:1px;
    color:#64748b;
}

.footer-col a{
    display:block;
    margin-bottom:7px;
    color:#94a3b8;
    text-decoration:none;
    font-size:15px;
}

.footer-col a:hover{
    color:white;
}

/* MOBILE */

@media (max-width:768px){

.footer-container{
    grid-template-columns:1fr;
    gap:28px;
}

.footer-left{
    max-width:100%;
}

}