html {
    margin-top: 0!important;
}

/* Coming Soon Component Styles */
.coming-soon-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00394E;
}

/* Background Image */
.coming-soon-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coming-soon-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Content */
.coming-soon-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem;
}

.coming-soon-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

/* Logo */
.coming-soon-logo {
    margin-bottom: 4rem;
}

.coming-soon-logo img {
    max-width: 600px;
    width: auto;
    height: auto;
    display: inline-block;
    max-height: 360px;
}

/* Text */
.coming-soon-text {
    margin-bottom: 3rem;
}

.coming-soon-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #00273a;
    font-weight: 500;
}

/* Contact */
.coming-soon-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.coming-soon-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 15px;
    font-weight: 500;
}

.coming-soon-contact-item i {   
    font-size: 15px;
    opacity: 1;
    color: #00273a;
}

.coming-soon-contact-item a {
    color: #00273a;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.coming-soon-contact-item a:hover {
    opacity: 0.8;
    border-bottom-color: #00273a;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-logo img {
        max-width: 100%;
    }

    .coming-soon-text p {
        font-size: 14px;
    }

    .coming-soon-contact {
        flex-direction: column;
        gap: 1.5rem;
    }

    .coming-soon-contact-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-logo {
        margin-bottom: 2rem;
    }

    .coming-soon-logo img {
        max-width: 100%;
    }

    .coming-soon-text {
        margin-bottom: 2rem;
    }

    .coming-soon-contact-item {
        font-size: 0.9375rem;
    }
}

/* Optimize background for mobile */
@media (max-width: 768px) {
    .coming-soon-background-image {
        /* Ensure background covers properly on mobile */
        background-attachment: scroll;
    }
}

/* Optimize video for mobile (commented out - keeping for future reference) */
/*
@media (max-width: 768px) {
    .coming-soon-video {
        min-width: 100%;
        min-height: 100%;
    }
}
*/

