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

:root {
    --primary-color: #0b5ed7;
    --secondary-color: #082f6b;
    --accent-color: #f7b731;
    --light-color: #ffffff;
    --text-color: #243447;
    --muted-color: #667085;
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background:
        linear-gradient(135deg, rgba(11, 94, 215, 0.94), rgba(8, 47, 107, 0.96)),
        radial-gradient(circle at top left, #3b82f6, transparent 45%);
}

.construction-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.construction-card {
    width: 100%;
    max-width: 720px;
    padding: 55px 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 95px;
    height: 95px;
    margin-bottom: 22px;
    font-size: 52px;
    background: #fff4d6;
    border-radius: 50%;
}

.status-label {
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.12;
}

.description {
    max-width: 560px;
    margin: 0 auto 30px;
    color: var(--muted-color);
    font-size: 1.1rem;
    line-height: 1.75;
}

.progress {
    width: 100%;
    height: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #e6ecf5;
    border-radius: 50px;
}

.progress-bar {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 50px;
    animation: progress-animation 2.5s ease-in-out infinite alternate;
}

.progress-text {
    margin-bottom: 30px;
    color: var(--muted-color);
    font-size: 0.95rem;
}

.contact-button {
    display: inline-block;
    padding: 14px 30px;
    color: var(--light-color);
    font-weight: 700;
    text-decoration: none;
    background: var(--primary-color);
    border-radius: 10px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-button:hover,
.contact-button:focus {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-text {
    margin-top: 35px;
    color: #98a2b3;
    font-size: 0.88rem;
}

@keyframes progress-animation {
    from {
        width: 55%;
    }

    to {
        width: 85%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .construction-card {
        padding: 45px 30px;
        border-radius: 18px;
    }

    .description {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .construction-page {
        padding: 18px 12px;
    }

    .construction-card {
        padding: 38px 20px;
    }

    .icon {
        width: 78px;
        height: 78px;
        font-size: 42px;
    }

    .status-label {
        font-size: 0.75rem;
        letter-spacing: 1.3px;
    }

    .contact-button {
        width: 100%;
    }
}
