/* =========================
   CONSTRUCTION HERO
========================= */

.construction-hero{
    position: relative;

    overflow: hidden;

    padding:
        80px 0;

    background:
        linear-gradient(
            135deg,
            #071019 0%,
            #0b1826 45%,
            #102337 100%
        );
}

/* GRID */
.construction-grid{
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 85%
        );
}

/* GLOW */
.construction-glow{
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(245,158,11,.12);

    filter: blur(140px);

    top: -180px;
    right: -120px;
}

/* CONTENT */
.construction-content{
    position: relative;
    z-index: 2;
}

/* BADGE */
.construction-badge{
    display: inline-flex;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: #f59e0b;

    font-size: .8rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;

    margin-bottom: 26px;
}

/* TITLE */
.construction-title{
    font-size: clamp(3rem,5vw,5.5rem);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #fff;

    margin-bottom: 28px;
}

.construction-title span{
    display: block;

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #ffd089
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.construction-text{
    max-width: 650px;

    color: rgba(255,255,255,.72);

    font-size: 1.05rem;
    line-height: 2;

    margin-bottom: 35px;
}

/* FEATURES */
.construction-features{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 40px;
}

/* FEATURE */
.construction-feature{
    padding: 14px 18px;

    border-radius: 18px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.84);

    font-size: .92rem;
    font-weight: 600;
}

/* BUTTON */
.construction-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 30px;

    border-radius: 999px;

    background: #f59e0b;

    color: #0b2c4d;

    text-decoration: none;

    font-weight: 800;

    transition: .3s ease;
}

.construction-btn:hover{
    transform: translateY(-4px);

    background: #ffb733;

    color: #0b2c4d;
}

/* IMAGE */
.construction-image-wrap{
    position: relative;
}

.construction-image{
    width: 100%;
    height: 650px;

    object-fit: cover;

    border-radius: 34px;

    box-shadow:
        0 40px 90px rgba(0,0,0,.4);

    position: relative;
    z-index: 2;
}

/* FLOAT CARD */
.construction-floating-card{
    position: absolute;

    left: -30px;
    bottom: 40px;

    max-width: 300px;

    padding: 24px;

    border-radius: 26px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(18px);

    z-index: 3;
}

.construction-floating-card span{
    display: block;

    color: #f59e0b;

    font-size: .8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .12em;

    margin-bottom: 12px;
}

.construction-floating-card strong{
    color: #fff;

    line-height: 1.7;

    font-size: 1rem;
}

/* MOBILE */
@media (max-width: 992px){

    .construction-image{
        height: 500px;
    }

    .construction-floating-card{
        left: 20px;
        bottom: 20px;
    }

}

@media (max-width: 768px){

    .construction-hero{
        padding:
            40px 0;
    }

    .construction-title{
        line-height: 1;
    }

    .construction-text{
        font-size: 1rem;
        line-height: 1.9;
    }

    .construction-image{
        height: 380px;
    }

    .construction-floating-card{
        position: relative;

        left: auto;
        bottom: auto;

        margin-top: -40px;
    }

}

/* =========================
   CONSTRUCTION OPERATIONS
========================= */

.construction-operations-section{
    position: relative;

    overflow: hidden;

    padding:
        80px 0
        120px;

    background:
        linear-gradient(
            180deg,
            #123e6b 0%,
            #174a79 100%
        );
}

/* DIVIDER */
.construction-operations-section::before{
    content: '';

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: min(1400px, calc(100% - 40px));
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.12),
            rgba(245,158,11,.28),
            rgba(255,255,255,.12),
            transparent
        );
}

/* GLOW */
.construction-operations-glow{
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(245,158,11,.14);

    filter: blur(140px);

    top: -180px;
    right: -150px;
}

/* HEADER */
.construction-operations-header{
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin-bottom: 70px;
}

/* BADGE */
.construction-operations-badge{
    display: inline-flex;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    color: #ffd089;

    font-size: .8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .14em;

    margin-bottom: 26px;
}

/* TITLE */
.construction-operations-title{
    font-size: clamp(3rem,5vw,5rem);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #fff;

    margin-bottom: 28px;
}

.construction-operations-title span{
    display: block;

    color: #ffd089;
}

/* TEXT */
.construction-operations-text{
    max-width: 760px;

    color: rgba(255,255,255,.82);

    line-height: 2;

    font-size: 1.05rem;
}

/* FLOW */
.construction-flow{
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px,1fr)
        );

    gap: 24px;
}

/* ITEM */
.construction-flow-item{
    position: relative;

    padding: 34px 28px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.05)
        );

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(12px);

    transition: .35s ease;
}

/* HOVER */
.construction-flow-item:hover{
    transform:
        translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.22);

    border-color:
        rgba(255,255,255,.22);
}

/* ICON */
.construction-flow-icon{
    width: 74px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #f59e0b,
            #ffd089
        );

    margin-bottom: 28px;

    box-shadow:
        0 15px 35px rgba(245,158,11,.28);
}

.construction-flow-icon i{
    color: #123e6b;

    font-size: 1.5rem;
}

/* H4 */
.construction-flow-item h4{
    color: #fff;

    font-size: 1.45rem;
    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 16px;
}

/* P */
.construction-flow-item p{
    color: rgba(255,255,255,.82);

    line-height: 1.9;

    margin: 0;
}

/* MOBILE */
@media (max-width: 768px){

    .construction-operations-section{
        padding:
            40px 0
            70px;
    }

    .construction-operations-title{
        line-height: 1;
    }

    .construction-flow{
        gap: 18px;
    }

    .construction-flow-item{
        padding: 28px 24px;
    }

}

/* =========================
   CONSTRUCTION SHOWCASE
========================= */

.construction-showcase-section{
    position: relative;

    overflow: hidden;

    padding:
        80px 0
        120px;

    background:
        linear-gradient(
            180deg,
            #071019 0%,
            #050b12 100%
        );
}

/* DIVIDER */
.construction-showcase-section::before{
    content: '';

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: min(1400px, calc(100% - 40px));
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.08),
            rgba(245,158,11,.22),
            rgba(255,255,255,.08),
            transparent
        );
}

/* GRID */
.construction-showcase-grid{
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.015) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 85%
        );
}

/* HEADER */
.construction-showcase-header{
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin-bottom: 70px;
}

/* BADGE */
.construction-showcase-badge{
    display: inline-flex;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: #f59e0b;

    font-size: .8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .14em;

    margin-bottom: 24px;
}

/* TITLE */
.construction-showcase-title{
    font-size: clamp(3rem,5vw,5rem);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #fff;

    margin-bottom: 28px;
}

.construction-showcase-title span{
    display: block;

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #ffd089
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.construction-showcase-text{
    max-width: 760px;

    color: rgba(255,255,255,.72);

    line-height: 2;

    font-size: 1.05rem;
}

/* LAYOUT */
.construction-showcase-layout{
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.35fr
        .9fr;

    gap: 24px;

    margin-bottom: 90px;
}

/* LARGE */
.construction-showcase-large{
    position: relative;

    overflow: hidden;

    border-radius: 34px;

    min-height: 680px;
}

.construction-showcase-large img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.construction-showcase-large:hover img{
    transform: scale(1.05);
}

/* OVERLAY */
.construction-showcase-overlay{
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 50px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.82)
        );
}

.construction-showcase-overlay span{
    color: #f59e0b;

    font-size: .8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .14em;

    margin-bottom: 14px;
}

.construction-showcase-overlay h3{
    color: #fff;

    font-size: clamp(2rem,3vw,3.5rem);

    line-height: 1.1;

    font-weight: 900;

    max-width: 520px;
}

/* STACK */
.construction-showcase-stack{
    display: grid;

    gap: 24px;
}

/* SMALL */
.construction-showcase-small{
    overflow: hidden;

    border-radius: 30px;

    min-height: 328px;
}

.construction-showcase-small img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.construction-showcase-small:hover img{
    transform: scale(1.05);
}

/* VIDEO */
.construction-video-block{
    position: relative;
    z-index: 2;
}

/* HEADER */
.construction-video-header{
    margin-bottom: 30px;
}

.construction-video-mini{
    display: inline-flex;

    color: #f59e0b;

    font-size: .8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .12em;

    margin-bottom: 12px;
}

.construction-video-header h3{
    color: #fff;

    font-size: clamp(2rem,4vw,3.5rem);

    font-weight: 900;

    letter-spacing: -0.04em;
}

/* VIDEO WRAPPER */
.construction-video-wrapper{
    overflow: hidden;

    border-radius: 34px;

    border: 1px solid rgba(255,255,255,.06);

    box-shadow:
        0 40px 90px rgba(0,0,0,.4);
}

/* VIDEO */
.construction-video{
    width: 100%;

    aspect-ratio: 16/9;

    object-fit: cover;

    display: block;
}

/* MOBILE */
@media (max-width: 992px){

    .construction-showcase-layout{
        grid-template-columns: 1fr;
    }

    .construction-showcase-large{
        min-height: 420px;
    }

    .construction-showcase-small{
        min-height: 260px;
    }

}

@media (max-width: 768px){

    .construction-showcase-section{
        padding:
            40px 0
            70px;
    }

    .construction-showcase-title{
        line-height: 1;
    }

    .construction-showcase-overlay{
        padding: 30px;
    }

    .construction-showcase-overlay h3{
        font-size: 2rem;
    }

}