.coming-soon-section{
    min-height:350px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
    background:linear-gradient(135deg,#f8f9ff,#eef1ff);
}

.coming-content{
    text-align:center;
    max-width:700px;
}

.coming-badge{
    display:inline-block;
    padding:10px 18px;
    background:#fff3e8;
    color:#ff7a00;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.coming-content h1{
    font-size:64px;
    font-weight:800;
    color:#1d1d1d;
    margin-bottom:20px;
    line-height:1.1;
}

.coming-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.coming-loader{
    display:flex;
    justify-content:center;
    gap:10px;
}

.coming-loader span{
    width:14px;
    height:14px;
    background:#ff7a00;
    border-radius:50%;
    animation:bounce 1s infinite ease-in-out;
}

.coming-loader span:nth-child(2){
    animation-delay:0.2s;
}

.coming-loader span:nth-child(3){
    animation-delay:0.4s;
}

@keyframes bounce{
    0%,100%{
        transform:translateY(0);
        opacity:0.5;
    }
    50%{
        transform:translateY(-10px);
        opacity:1;
    }
}

@media(max-width:768px){

    .coming-content h1{
        font-size:42px;
    }

    .coming-content p{
        font-size:16px;
    }

}