﻿
.coming-soon {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #f7f8f6, #ffffff);
}

.coming-card {
    max-width: 700px;
    width: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

    .coming-card .icon {
        font-size: 52px;
        margin-bottom: 18px;
    }

    .coming-card h1 {
        font-size: 30px;
        color: #1f3b2c;
        margin-bottom: 14px;
    }

    .coming-card .subtitle {
        font-size: 18px;
        color: #444;
        margin-bottom: 18px;
    }

    .coming-card .desc {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 26px;
    }

.info-box {
    background: #f3f6f4;
    border-left: 4px solid #2e5c44;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    margin-bottom: 32px;
}

.buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

    .btn.primary {
        background: linear-gradient(135deg, #1f3b2c, #2e5c44);
        color: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }

        .btn.primary:hover {
            transform: translateY(-3px);
        }

    .btn.outline {
        border: 2px solid #2e5c44;
        color: #2e5c44;
        background: transparent;
    }

        .btn.outline:hover {
            background: #2e5c44;
            color: #fff;
        }

.footer-text {
    display: block;
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}

@media (max-width: 768px) {
    .coming-card {
        padding: 40px 24px;
    }

        .coming-card h1 {
            font-size: 24px;
        }
}