/* =========================
   COMING SOON PAGE
========================= */

.coming-soon-page{
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* TITLE */
.coming-soon-page h1{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* COMING TEXT */
.coming-soon-text{
    color: #ff6a00;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.coming-soon-page p{
    max-width: 600px;
    line-height: 1.7;
    color: #666;
}

/* BUTTON GROUP */
.contact-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* COMMON BUTTON */
.btn-whatsapp,
.btn-call{
    min-width: 170px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    transition: 0.3s;
}

/* WHATSAPP */
.btn-whatsapp{
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover{
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* CALL */
.btn-call{
    background: linear-gradient(135deg,#ff6a00,#ff8c42);
    color: #fff;
}

.btn-call:hover{
    transform: translateY(-2px);
}

/* TRUST LINE */
.trust-line{
    margin-top: 20px;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}






/* =========================
   🔥 MOBILE FINAL POLISH
========================= */
@media(max-width:768px){

/* 🔥 HEADER ALERT SPACE FIX */
body{
    padding-top: 30px;   /* alert bar height adjust */
}

/* 🔥 CONTENT PERFECT CENTER */
.coming-soon-page{
    min-height: calc(100vh - 160px); /* header + bottom bar */
    padding: 25px 15px;
}

/* 🔥 TITLE */
.coming-soon-page h1{
    font-size: 26px;
    margin-bottom: 8px;
}

/* 🔥 COMING TEXT */
.coming-soon-text{
    font-size: 20px;
    margin-bottom: 10px;
}

/* 🔥 DESCRIPTION */
.coming-soon-page p{
    font-size: 15px;
    line-height: 1.5;
}

/* 🔥 BUTTON FULL WIDTH + TOUCH FRIENDLY */
.btn-whatsapp,
.btn-call{
    width: 100%;
    max-width: 240px;
    padding: 13px;
    font-size: 15px;
}

/* 🔥 TRUST LINE */
.trust-line{
    font-size: 13px;
    margin-top: 15px;
}

/* 🔥 BOTTOM BAR SPACE */
body{
    padding-bottom: 70px; /* bottom nav space */
}

}