/* =====================================
            PAGE
===================================== */

.page-shell{

    width:min(1100px,92%);

    margin:auto;

}

/* =====================================
            HERO
===================================== */

.contact-hero{

    text-align:center;

    padding:90px 0 60px;

}

.hero-pill{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(124,58,237,.15);

    border:1px solid rgba(124,58,237,.35);

    color:#c4b5fd;

    margin-bottom:25px;

}

.contact-hero h1{

    font-size:64px;

    color:white;

    line-height:1.1;

    margin:0;

}

.gradient-text{

    display:block;

    background:linear-gradient(
    90deg,
    #3b82f6,
    #06b6d4,
    #7c3aed);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.contact-hero p{

    max-width:720px;

    margin:30px auto;

    color:#94a3b8;

    line-height:1.8;

    font-size:18px;

}

/* =====================================
            CONTACT CARD
===================================== */

.contact-card{

    padding:45px;

    margin-bottom:80px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

}

.contact-card h2{

    color:white;

    margin-bottom:15px;

}

.contact-card>p{

    color:#94a3b8;

    margin-bottom:40px;

}

/* =====================================
            DETAILS
===================================== */

.details{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.info-box{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.info-box:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.30);

}

.icon{

    font-size:40px;

    margin-bottom:15px;

}

.info-box h3{

    color:white;

    margin-bottom:10px;

}

.info-box p{

    color:#94a3b8;

}

/* =====================================
            BUTTONS
===================================== */

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.btn-outline{

    background:transparent;

    border:1px solid rgba(255,255,255,.15);

    color:white;

}

.btn-outline:hover{

    background:rgba(255,255,255,.05);

}

/* =====================================
            FOOTER
===================================== */

.site-footer{

    padding:35px;

    text-align:center;

    color:#94a3b8;

    border-top:1px solid rgba(255,255,255,.08);

}

/* =====================================
            ACTIVE NAV
===================================== */

.nav-menu a.active{

    color:white;

}

.nav-menu a.active::after{

    width:100%;

}

/* =====================================
            RESPONSIVE
===================================== */

@media(max-width:768px){

.contact-hero h1{

font-size:42px;

}

.details{

grid-template-columns:1fr;

}

.contact-card{

padding:28px;

}

.contact-buttons{

flex-direction:column;

align-items:center;

}

.contact-buttons .btn{

width:100%;

text-align:center;

}

}