/* ================================
   GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #062d25;
    --green: #0b5d4b;
    --green-light: #11836a;
    --gold: #d4ad5a;
    --white: #ffffff;
    --text: #d8e5e1;
    --muted: #91aaa3;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--green-dark);
    color: var(--white);
}


/* ================================
   PAGE
================================ */

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #041f1a 0%,
            #073a30 50%,
            #041f1a 100%);
}


/* ================================
   BACKGROUND GLOW
================================ */

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.glow-one {
    width: 350px;
    height: 350px;

    top: -150px;
    right: -80px;

    background: rgba(17, 131, 106, 0.25);
}

.glow-two {
    width: 300px;
    height: 300px;

    bottom: -150px;
    left: -100px;

    background: rgba(212, 173, 90, 0.10);
}


/* ================================
   NAVBAR
================================ */

.navbar {
    padding: 28px 0;
    position: relative;
    z-index: 5;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
    color: white;
}

.brand-logo {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(135deg,
            var(--gold),
            #a98237);

    color: #173c31;

    font-size: 19px;
    font-weight: 800;

    box-shadow:
        0 8px 30px rgba(212, 173, 90, 0.20);
}

.brand h3 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 21px;
    font-weight: 700;
}

.brand span {
    display: block;

    margin-top: 2px;

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--muted);
}


/* ================================
   MAIN
================================ */

main {
    min-height: calc(100vh - 150px);

    display: flex;
    align-items: center;

    position: relative;
    z-index: 2;
}


/* ================================
   CARD
================================ */

.maintenance-card {
    min-height: 560px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    position: relative;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 32px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025));

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);

    overflow: hidden;
}


/* ================================
   CONTENT
================================ */

.content {
    padding: 70px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border-radius: 50px;

    border: 1px solid rgba(212, 173, 90, 0.25);

    background: rgba(212, 173, 90, 0.08);

    color: #e2c477;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d4ad5a;

    box-shadow:
        0 0 0 5px rgba(212, 173, 90, 0.10);

    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(212, 173, 90, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(212, 173, 90, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 173, 90, 0);
    }
}


/* ================================
   HEADING
================================ */

h1 {
    margin-top: 28px;
    margin-bottom: 22px;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

h1 span {
    color: var(--gold);
}


/* ================================
   DESCRIPTION
================================ */

.description {
    max-width: 570px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--text);
}


/* ================================
   PROGRESS
================================ */

.progress-section {
    max-width: 520px;

    margin-top: 40px;
}

.progress-info {
    display: flex;
    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 12px;

    color: var(--muted);
}

.progress-info strong {
    color: var(--gold);
}

.progress {
    height: 7px;

    overflow: hidden;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
    height: 100%;

    border-radius: 50px;

    background:
        linear-gradient(90deg,
            var(--green-light),
            var(--gold));

    animation: progressAnimation 1.8s ease;
}

@keyframes progressAnimation {
    from {
        width: 0 !important;
    }

    to {
        width: 75%;
    }
}


/* ================================
   CONTACT
================================ */

.contact-area {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 35px;
}

.contact-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.07);

    color: var(--gold);

    font-size: 18px;
}

.contact-area small {
    display: block;

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 11px;
}

.contact-area a {
    color: white;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.contact-area a:hover {
    color: var(--gold);
}


/* ================================
   VISUAL
================================ */

.visual {
    height: 100%;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 500px;
}


/* Decorative Circles */

.circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(212, 173, 90, 0.16);
}

.circle-large {
    width: 390px;
    height: 390px;

    animation: rotateCircle 25s linear infinite;
}

.circle-medium {
    width: 270px;
    height: 270px;

    border-color: rgba(255, 255, 255, 0.08);

    animation: rotateCircleReverse 18s linear infinite;
}

@keyframes rotateCircle {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCircleReverse {
    to {
        transform: rotate(-360deg);
    }
}


/* Gear */

.gear-main {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            rgba(212, 173, 90, 0.20),
            rgba(11, 93, 75, 0.30));

    border: 1px solid rgba(212, 173, 90, 0.30);

    box-shadow:
        0 0 80px rgba(212, 173, 90, 0.10);

    position: relative;
    z-index: 3;

    animation: gearFloat 4s ease-in-out infinite;
}

.gear-main i {
    font-size: 72px;

    color: var(--gold);

    animation: gearRotate 8s linear infinite;
}

@keyframes gearRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes gearFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* Floating Icons */

.floating-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(10px);

    color: var(--gold);

    font-size: 19px;

    z-index: 5;

    animation: floating 4s ease-in-out infinite;
}

.icon-one {
    top: 22%;
    right: 16%;
}

.icon-two {
    bottom: 22%;
    left: 12%;

    animation-delay: 1s;
}

.icon-three {
    top: 17%;
    left: 20%;

    animation-delay: 2s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* ================================
   FOOTER
================================ */

footer {
    position: relative;
    z-index: 5;

    padding: 20px 0 28px;

    text-align: center;

    color: var(--muted);

    font-size: 11px;
}

footer strong {
    color: var(--gold);
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    main {
        padding: 25px 0 50px;
    }

    .maintenance-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .content {
        padding: 55px;
        text-align: center;
    }

    .description {
        margin: auto;
    }

    .progress-section {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-area {
        justify-content: center;
    }

    .visual {
        min-height: 380px;
    }

    .circle-large {
        width: 300px;
        height: 300px;
    }

    .circle-medium {
        width: 210px;
        height: 210px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 576px) {

    .navbar {
        padding: 20px 0;
    }

    .brand-logo {
        width: 45px;
        height: 45px;

        border-radius: 12px;

        font-size: 16px;
    }

    .brand h3 {
        font-size: 17px;
    }

    .brand span {
        font-size: 8px;
    }

    main {
        padding: 15px 0 30px;
    }

    .maintenance-card {
        border-radius: 24px;
    }

    .content {
        padding: 40px 24px;
    }

    .status-badge {
        font-size: 10px;
    }

    h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .description {
        font-size: 14px;
        line-height: 1.7;
    }

    .progress-section {
        margin-top: 30px;
    }

    .contact-area {
        margin-top: 28px;
    }

    .visual {
        min-height: 300px;
    }

    .circle-large {
        width: 230px;
        height: 230px;
    }

    .circle-medium {
        width: 160px;
        height: 160px;
    }

    .gear-main {
        width: 110px;
        height: 110px;
    }

    .gear-main i {
        font-size: 52px;
    }

    .floating-icon {
        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .icon-one {
        right: 12%;
    }

    .icon-two {
        left: 8%;
    }

    .icon-three {
        left: 15%;
    }
}
