/* ================================
   NANSING - COMING SOON
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #009447;
    --green-dark: #006d35;
    --green-light: #12a957;
    --black: #111111;
    --white: #ffffff;
    --light: #f6faf7;
    --text: #555555;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--black);
    min-height: 100vh;
}

/* Main Page */

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 148, 71, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 148, 71, 0.07),
            transparent 30%
        ),
        #f8fbf9;
}

/* Decorative Background */

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 450px;
    height: 450px;

    top: -250px;
    left: -180px;

    border: 80px solid rgba(0, 148, 71, 0.05);
}

.shape-two {
    width: 500px;
    height: 500px;

    bottom: -300px;
    right: -200px;

    border: 90px solid rgba(0, 148, 71, 0.05);
}

/* Container */

.coming-soon {
    width: 100%;
    max-width: 900px;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 50px 25px;

    position: relative;
    z-index: 2;
}

/* Logo */

.logo-wrapper {
    width: 180px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    background: white;

    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.10);

    animation: logoFloat 4s ease-in-out infinite;
}

.logo {
    width: 150px;
    height: 150px;

    object-fit: contain;
}

/* Logo Animation */

@keyframes logoFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}

/* Content */

.content {
    width: 100%;
    max-width: 700px;

    text-align: center;
}

/* Badge */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 17px;

    background: rgba(0, 148, 71, 0.08);

    color: var(--green-dark);

    border: 1px solid rgba(0, 148, 71, 0.15);

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 22px;
}

.dot {
    width: 8px;
    height: 8px;

    background: var(--green);

    border-radius: 50%;

    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }

}

/* Heading */

h1 {
    font-size: clamp(55px, 9vw, 100px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;

    margin-bottom: 25px;
}

h1 span {
    color: var(--green);
}

/* Subtitle */

.subtitle {
    max-width: 650px;

    margin: 0 auto 18px;

    font-size: clamp(19px, 2.5vw, 25px);

    line-height: 1.5;

    font-weight: 500;

    color: #292929;
}

/* Message */

.message {
    max-width: 590px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text);
}

/* Progress */

.progress-section {
    max-width: 500px;

    margin: 38px auto 0;

    text-align: left;
}

.progress-text {
    display: flex;
    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 13px;

    color: #555;

    font-weight: 600;
}

.progress-text span:last-child {
    color: var(--green);
}

.progress-bar {
    width: 100%;
    height: 7px;

    background: #e1e9e4;

    border-radius: 20px;

    overflow: hidden;
}

.progress {
    width: 78%;
    height: 100%;

    background: linear-gradient(
        90deg,
        var(--green-dark),
        var(--green),
        var(--green-light)
    );

    border-radius: 20px;

    animation: progressAnimation 2s ease-out;
}

@keyframes progressAnimation {

    from {
        width: 0;
    }

    to {
        width: 78%;
    }

}

/* Contact */

.contact {
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact p {
    font-size: 14px;
    color: #777;
}

.contact a {
    color: var(--green-dark);

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;
}

.contact a:hover {
    color: var(--green);
}

/* Footer */

footer {
    position: absolute;

    bottom: 25px;

    width: 100%;

    text-align: center;
}

footer p {
    font-size: 12px;

    color: #999;

    letter-spacing: 0.5px;
}

/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .coming-soon {
        padding: 40px 20px;
    }

    .logo-wrapper {
        width: 150px;
        height: 150px;

        margin-bottom: 30px;
    }

    .logo {
        width: 125px;
        height: 125px;
    }

    h1 {
        letter-spacing: -2px;
    }

    .message {
        font-size: 15px;
    }

}

/* ================================
   MOBILE
================================ */

@media (max-width: 480px) {

    .coming-soon {
        padding: 30px 18px 80px;
    }

    .logo-wrapper {
        width: 125px;
        height: 125px;

        border-radius: 20px;

        margin-bottom: 25px;
    }

    .logo {
        width: 105px;
        height: 105px;
    }

    .badge {
        font-size: 9px;
        letter-spacing: 0.8px;

        padding: 8px 12px;
    }

    h1 {
        font-size: 55px;

        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 17px;

        line-height: 1.55;
    }

    .message {
        font-size: 14px;

        line-height: 1.7;
    }

    .progress-section {
        margin-top: 30px;
    }

    .contact {
        margin-top: 28px;
    }

    footer {
        bottom: 18px;
    }

}


/* Contact Information */

.contact {
    width: 100%;
    margin-top: 40px;
}

.contact-title {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 18px;

    background: rgba(255,255,255,.85);

    border: 1px solid rgba(0,148,71,.12);

    border-radius: 15px;

    text-align: left;

    box-shadow: 0 8px 25px rgba(0,0,0,.04);

    transition: .3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);

    border-color: rgba(0,148,71,.3);

    box-shadow: 0 12px 30px rgba(0,148,71,.10);
}

.contact-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,148,71,.10);

    border-radius: 10px;

    font-size: 18px;
}

.contact-item span {
    display: block;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;

    color: #888;

    margin-bottom: 5px;
}

.contact-item p {
    font-size: 13px;

    line-height: 1.5;

    color: #333;
}

.contact-item a {
    color: #006d35;

    text-decoration: none;

    font-weight: 700;
}

.contact-item a:hover {
    color: #009447;
}

/* Mobile */

@media (max-width: 700px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-item {
        padding: 15px;
    }

}