.coming-soon {
    background-size: cover;
    gap: 4rem;
    overflow: hidden !important;
    max-height: 100vh;
}

.coming-soon .section-content {
    gap: 4rem;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1400px !important;
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
    box-sizing: border-box;
    min-height: 70vh;
}

.coming-soon .hero {
    max-width: 500px;
    gap: 1.5rem;
    z-index: 3 !important;
    text-align: left !important;
    align-items: flex-start !important;
}

.coming-soon .hero-title {
    font-size: 4.25rem;
    line-height: 4.75rem;
}

.coming-soon .hero-sub {
    max-width: 600px;
    font-size: 1.15rem;
    line-height: 1.5rem;
}

.coming-soon .button-container {
    margin-top: 1.5rem;
    gap: 1rem;
}

/* Animation Elements */
.coming-soon-animation {
    flex: 1;
    position: relative;
    height: 300px;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.animated-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-radius: 0.4rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.animated-box.delay-1 {
    animation-delay: 0.2s;
    width: 45px;
    height: 45px;
}

.animated-box.delay-2 {
    animation-delay: 0.4s;
    width: 75px;
    height: 75px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px);
        opacity: 1;
    }
}

.coming-soon .grid-background {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 0.75px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0.75px, transparent 1px);
}

.coming-soon .overlay-background {
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .coming-soon .section-content {
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
    }

    .coming-soon .hero {
        max-width: 100%;
        text-align: center !important;
        align-items: center !important;
    }

    .coming-soon-animation {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .coming-soon .section-content {
        gap: 2rem !important;
        margin-top: 2rem;
        min-height: 80vh;
    }

    .coming-soon .hero-title {
        font-size: 3rem !important;
        line-height: 3.25rem !important;
    }

    .coming-soon .hero-sub {
        font-size: 1.1rem;
        line-height: 1.25rem;
    }

    .coming-soon-animation {
        height: 200px;
    }

    .animated-box {
        width: 50px;
        height: 50px;
    }

    .animated-box.delay-1 {
        width: 35px;
        height: 35px;
    }

    .animated-box.delay-2 {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 480px) {
    .coming-soon .section-content {
        gap: 1.5rem !important;
        margin-top: 1.5rem;
        min-height: 90vh;
    }

    .coming-soon .hero-title,
    .coming-soon .hero-title.h1 {
        font-size: 2.25rem !important;
        line-height: 2.25rem !important;
        padding: 0;
    }

    .coming-soon .button-container {
        flex-direction: column !important;
        width: 100%;
        gap: 0.5rem;
    }

    .coming-soon .button-container .button {
        width: 100% !important;
    }

    .coming-soon-animation {
        height: 150px;
        gap: 1rem;
    }

    .animated-box {
        width: 40px;
        height: 40px;
    }

    .animated-box.delay-1 {
        width: 25px;
        height: 25px;
    }

    .animated-box.delay-2 {
        width: 55px;
        height: 55px;
    }
}

@media (max-height: 1000px) {
    .coming-soon .section-content {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}
