/* ============================================
   Coming Soon Page - Premium Design
   ============================================ */

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent !important;
}

.coming-soon-wrapper {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: transparent !important;
}



/* Logo - Position it ABOVE the heading */
.coming-soon-logo {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 225px;
}

.coming-soon-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Container */
.coming-soon-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    padding-top: 220px;
    background-color: transparent !important;
   
}

.coming-soon-inner {
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

/* Heading */
.coming-soon-heading {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #444444;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Description */
.coming-soon-description {
    font-size: 25px;
    font-weight: 300;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.coming-soon-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-phone a {
    font-size: 16px;
    color: #444444;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 16px;
}

.contact-phone a:hover {
    color: #666666;
    transform: scale(1.05);
}

/* Button */
.coming-soon-button {
    background-color: inherit!important;
    color: inherit !important;
    border: 2px solid #444444 !important;
    padding: 14px 40px !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.coming-soon-button:hover {
    background-color: inherit !important;
    color: inherit !important;
    border-color: #333333 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-2px) !important;
}

.coming-soon-button:active {
    transform: translateY(0) !important;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .coming-soon-logo {
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 140px;
    }

    .coming-soon-content {
        padding: 30px;
        padding-top: 150px;
    }

    .coming-soon-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .coming-soon-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .coming-soon-button {
        padding: 12px 32px !important;
        font-size: 14px !important;
    }
}

    @media (max-width: 480px) {
    .coming-soon-logo {
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 110px;
    }
    

    .coming-soon-content {
        padding: 20px;
        padding-top: 110px;
    }

    .coming-soon-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .coming-soon-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact-phone a {
        font-size: 14px;
    }

    .coming-soon-button {
        padding: 10px 28px !important;
        font-size: 13px !important;
        width: 100%;
        max-width: 300px;
    }
}

/* Disable scrolling */
body.biz-coming-soon-page {
    overflow: hidden;
}