*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    height:auto;
    overflow-y:auto;
}

body{
    margin:0;
    min-height:100vh;
    overflow-x:hidden;
    overflow-y:auto;
    background:#111;
    font-family:'Poppins',sans-serif;
}

.coming-soon{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
    padding:70px 20px 80px;
    position:relative;
    z-index:2;
}

.logo{
    width:320px;
    max-width:90%;
    margin-bottom:40px;
}

.tag{
    color:#ef2027;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
}

h1{
    font-size:70px;
    margin:20px 0;
    font-weight:700;
    color:#ffffff;
    text-shadow:0 4px 15px rgba(0,0,0,.35);
}

.subtitle{
    max-width:760px;
    font-size:19px;
    color:#d8d8d8;
    line-height:1.8;
}

.divider{
    width:90px;
    height:4px;
    background:#ef2027;
    margin:40px auto;
    border-radius:20px;
}

.contact-grid{
    width:100%;
    max-width:1200px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin:50px 0;
}

.card{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#ef2027;
}

.icon{
    width:65px;
    height:65px;
    margin:auto;
    background:#ef2027;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:28px;
    margin-bottom:20px;
}

.card h4{
    margin-bottom:12px;
    font-size:24px;
    font-weight:600;
    color:#ffffff;
}

.card p{
    color:#d7d7d7;
    line-height:1.7;
    font-size:16px;
}

.footer{
    margin-top:60px;
    color:#999;
    font-size:14px;
}

.bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
}

.bg1{
    width:500px;
    height:500px;
    background:#ef2027;
    left:-180px;
    top:-180px;
    opacity:.28;
}

.bg2{
    width:450px;
    height:450px;
    background:#ef2027;
    right:-150px;
    bottom:-150px;
    opacity:.18;
}
.icon{
    width:72px;
    height:72px;
    margin:auto;
    background:#ef2027;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:22px;
    box-shadow:0 10px 30px rgba(239,32,39,.35);
}

.icon i{
    color:#fff;
    font-size:28px;
}

@media(max-width:991px){

.contact-grid{
grid-template-columns:repeat(2,1fr);
}

h1{
font-size:56px;
}

}

@media(max-width:768px){

.logo{
    width:220px;
}

h1{
    font-size:42px;
}

.subtitle{
    font-size:16px;
    max-width:95%;
}

.contact-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px 30px;
    transition:.35s ease;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#ef2027;
    box-shadow:0 20px 45px rgba(239,32,39,.18);
}

.footer{
    margin-top:30px;
}

}