
:root{
    --orange:#ff7a00;
    --orange-light:#ffb15f;
    --dark:#050505;
    --text:#ffffff;
    --muted:#9c9c9c;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'DM Sans',sans-serif;
    background: #f9f0f0;
    color:#fff;
    overflow-x:hidden;
}

/* Background */

body:before,
body:after{
    content:"";
    position:fixed;
    border-radius:50%;
    filter:blur(100px);
    opacity:.18;
    pointer-events:none;
}

body:before{
    width:450px;
    height:450px;
    background:var(--orange);
    top:-250px;
    left:-150px;
}

body:after{
    width:400px;
    height:400px;
    background:#ff7a00;
    bottom:-250px;
    right:-150px;
}

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

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

/* Logo */

.logo{
    text-align:center;
    margin-bottom:55px;
}

.logo img{
    max-width:430px;
    width:100%;
    height:auto;
}

/* Main Layout */

.content{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

/* Left */

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:1px solid rgba(255,122,0,.35);
    background: #ff8518;
    color: #fff;
    padding:10px 17px;
    border-radius:50px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:25px;
}

.dot{
    width:8px;
    height:8px;
    background: #fff;
    border-radius:50%;
    box-shadow:0 0 15px var(--orange);
    animation:pulse 1.5s infinite;
}

h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(45px,6vw,82px);
    line-height:1.05;
    font-weight:700;
    margin-bottom:25px;
    color: #000;
}

h1 span{
    color:var(--orange);
}

.description{
    color: #000;
    font-size:17px;
    line-height:1.8;
    max-width:600px;
}

/* Contact */

.contact-box{
    margin-top:35px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.contact-box a{
    text-decoration:none;
    color:#fff;
    border:1px solid rgba(255,255,255,.12);
    background:#0c0c0c;
    padding:15px 20px;
    border-radius:8px;
    transition:.3s;
}

.contact-box a:hover{
    border-color:var(--orange);
    background: rgb(0 0 0);
    transform:translateY(-3px);
}

/* Services */

.services-box{
    background: #000;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    position:relative;
    overflow:hidden;
}

.services-box:before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:var(--orange);
    filter:blur(90px);
    opacity:.12;
    top:-80px;
    right:-80px;
}

.services-title{
    font-size:13px;
    letter-spacing:3px;
    color:#ff9b43;
    text-transform:uppercase;
    margin-bottom:12px;
}

.services-box h2{
    font-family:'Playfair Display',serif;
    font-size:34px;
    margin-bottom:28px;
}

.services-list{
    list-style:none;
    display:grid;
    gap:12px;
}

.services-list li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    color: #fff;
    padding:14px 15px;
    border-radius:8px;
    background: #ff7a00;
    border:1px solid transparent;
    transition:.3s;
}

.services-list li a:after{
    content:"↗";
    color: #fff;
    font-size:18px;
    transition:.3s;
}

.services-list li a:hover{
    border-color:rgba(255,122,0,.45);
    background:rgba(255,122,0,.08);
    color:#fff;
    transform:translateX(5px);
}

.services-list li a:hover:after{
    transform:rotate(45deg);
}

/* Footer */

.bottom-text{
    text-align:center;
    color:#666;
    font-size:13px;
    margin-top:50px;
}

.bottom-text span{
    color:var(--orange);
}

/* Animation */

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.6);
        opacity:.4;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* Responsive */

@media(max-width:900px){

    .content{
        grid-template-columns:1fr;
        gap:40px;
    }

    .logo{
        margin-bottom:40px;
    }

    .left-content{
        text-align:center;
    }

    .description{
        margin:auto;
    }

    .contact-box{
        justify-content:center;
    }

}

@media(max-width:500px){

    .construction-page{
        padding:30px 15px;
    }

    .logo img{
        max-width:300px;
    }

    h1{
        font-size:48px;
    }

    .services-box{
        padding:25px 18px;
    }

    .contact-box{
        flex-direction:column;
    }

    .contact-box a{
        width:100%;
    }

}
