.coming-soon-body {
    margin: 0;
    min-height: 100%;
    background: #062015;
    color: #fff;
}

.coming-soon {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.coming-soon__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    transform: scale(1.04);
}

.coming-soon__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(6, 32, 21, 0.72) 0%, rgba(6, 32, 21, 0.55) 40%, rgba(6, 32, 21, 0.88) 100%),
        radial-gradient(circle at 80% 10%, rgba(41, 157, 92, 0.35), transparent 45%);
}

.coming-soon__header,
.coming-soon__footer {
    position: relative;
    z-index: 1;
    padding: 24px 20px;
}

.coming-soon__logo {
    display: inline-flex;
    align-items: center;
}

.coming-soon__logo img {
    max-width: 148px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.coming-soon__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px 40px;
    position: relative;
    z-index: 1;
}

.coming-soon__card {
    width: min(760px, 100%);
    text-align: center;
}

.coming-soon__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: #b7f0cf;
    margin-bottom: 16px;
}

.coming-soon__title {
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 18px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.coming-soon__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 18px;
}

.coming-soon__urdu {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 32px;
    max-width: 560px;
    line-height: 1.9;
}

.coming-soon__countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 32px;
}

.coming-soon__count-item {
    min-width: 84px;
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.coming-soon__count-item strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.coming-soon__count-item span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.coming-soon__form {
    position: relative;
    max-width: 540px;
    margin: 0 auto 18px;
}

.coming-soon__form input {
    width: 100%;
    height: 62px;
    border: 0;
    border-radius: 999px;
    padding: 0 150px 0 22px;
    background: rgba(255, 255, 255, 0.96);
    color: #14241c;
    font-size: 1rem;
}

.coming-soon__form input:focus {
    outline: 3px solid rgba(41, 157, 92, 0.35);
}

.coming-soon__form button {
    position: absolute;
    top: 7px;
    right: 7px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    background: var(--main-600, #299d5c);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.coming-soon__form button:hover,
.coming-soon__form button:focus {
    background: var(--main-800, #1e7344);
}

.coming-soon__form button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.coming-soon__message {
    min-height: 24px;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.coming-soon__message.is-success {
    color: #b7f0cf;
}

.coming-soon__message.is-error {
    color: #ffd0c7;
}

.coming-soon__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.coming-soon__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.coming-soon__action:hover {
    background: var(--main-600, #299d5c);
    color: #fff;
}

.coming-soon__social {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.coming-soon__social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
}

.coming-soon__social a:hover {
    background: var(--main-600, #299d5c);
}

.coming-soon__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.coming-soon__footer a {
    color: #fff;
    text-decoration: none;
}

.coming-soon__footer a:hover {
    color: #b7f0cf;
}

@media (max-width: 640px) {
    .coming-soon__form input {
        padding: 0 18px 58px;
        height: auto;
        min-height: 58px;
        border-radius: 24px;
    }

    .coming-soon__form button {
        position: static;
        width: 100%;
        margin-top: 10px;
        height: 48px;
    }

    .coming-soon__footer {
        justify-content: center;
        text-align: center;
    }
}
