/* HERO */

.hero{
    min-height:calc(100vh - 82px);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:100px 30px;
    overflow:hidden;
    background:
        linear-gradient(rgba(29,21,53,.78),rgba(29,21,53,.88)),
        url("../img/hero-building.jpg") center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%,rgba(212,160,23,.16),transparent 35%),
        radial-gradient(circle at 80% 70%,rgba(255,255,255,.07),transparent 30%);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.hero-label{
    display:inline-block;
    color:#d4a017;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:clamp(3rem,6vw,5.5rem);
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#d4a017;
}

.hero-content p{
    max-width:680px;
    margin:0 auto 35px;
    color:#eee;
    font-size:1.08rem;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-scroll{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    color:rgba(255,255,255,.7);
    font-size:.65rem;
    letter-spacing:2px;
}

.hero-scroll i{
    color:#d4a017;
}

/* ABOUT */

.about-section{
    padding:120px 0;
    background:#fff;
    
}

.about-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    height:520px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.14);
}

.about-experience{
    position:absolute;
    right:-25px;
    bottom:30px;
    width:170px;
    padding:22px;
    background:#1d1535;
    border-radius:15px;
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.about-experience strong{
    display:block;
    color:#d4a017;
    font-size:1.15rem;
}

.about-experience span{
    font-size:.7rem;
    letter-spacing:1px;
}

.about-content .section-label{
    margin-bottom:15px;
}

.about-content h2{
    color:#1d1535;
    font-size:clamp(2.3rem,4vw,3.5rem);
    line-height:1.15;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#d4a017;
}

.about-content p{
    color:#666;
    font-size:.98rem;
    line-height:1.9;
    margin-bottom:18px;
}

.text-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    color:#1d1535;
    font-weight:700;
    transition:.3s;
}

.text-link:hover{
    color:#d4a017;
    gap:15px;
}

/* SECTION HEADING */

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-heading h2{
    color:#1d1535;
    font-size:clamp(2.2rem,4vw,3.3rem);
    line-height:1.15;
    margin-bottom:15px;
}

.section-heading h2 span{
    color:#d4a017;
}

.section-heading p{
    color:#777;
    font-size:1rem;
}

/* SERVICES */

.services-section{
    position:relative;
    padding:120px 0;
    background:
        linear-gradient(rgba(29,21,53,.94),rgba(29,21,53,.97)),
        url("../img/background-image.webp") center/cover;
}

.services-section .section-heading h2{
    color:#fff;
}

.services-section .section-heading p{
    color:#c9c9c9;
}

.services-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-card{
    position:relative;
    min-height:310px;
    padding:35px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    overflow:hidden;
    transition:.4s ease;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:3px;
    background:#d4a017;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    background:#fff;
    border-color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.service-card:hover::before{
    width:100%;
}

.service-number{
    position:absolute;
    top:25px;
    right:25px;
    color:rgba(255,255,255,.18);
    font-size:2rem;
    font-weight:700;
}

.service-card:hover .service-number{
    color:rgba(29,21,53,.1);
}

.service-card > i{
    color:#d4a017;
    font-size:2.3rem;
    margin-bottom:30px;
}

.service-card h3{
    color:#fff;
    font-size:1.25rem;
    margin-bottom:15px;
}

.service-card:hover h3{
    color:#1d1535;
}

.service-card p{
    color:#bdbdbd;
    font-size:.9rem;
    line-height:1.8;
}

.service-card:hover p{
    color:#666;
}

.service-arrow{
    position:absolute;
    bottom:30px;
    right:30px;
    color:#d4a017;
}

/* FEATURED PROJECT */

.featured-section{
    padding:120px 0;
    background:#f7f7f5;
}

.featured-container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

.featured-heading{
    margin-bottom:55px;
}

.featured-heading .section-label{
    margin-bottom:15px;
}

.featured-heading h2{
    color:#1d1535;
    font-size:clamp(2.3rem,4vw,3.5rem);
    line-height:1.15;
}

.featured-heading h2 span{
    color:#d4a017;
}

.featured-project{
    display:grid;
    grid-template-columns:1.08fr 1fr;
    gap:70px;
    align-items:center;
}

.featured-video{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    background:#111;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.featured-video::after{
    content:"FEATURED";
    position:absolute;
    top:20px;
    left:20px;
    padding:7px 14px;
    background:#d4a017;
    color:#fff;
    border-radius:30px;
    font-size:.65rem;
    font-weight:700;
    letter-spacing:1px;
}

.featured-video video{
    width:100%;
    height:560px;
    object-fit:cover;
    display:block;
    pointer-events:none;
}

.featured-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.project-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:7px 15px;
    border-radius:30px;
    background:#efe3b8;
    color:#8a6500;
    font-size:.7rem;
    font-weight:700;
    letter-spacing:1px;
}

.featured-content h3{
    color:#1d1535;
    font-size:2.7rem;
    line-height:1.1;
    margin-bottom:20px;
}

.project-location{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:25px;
    color:#666;
    font-size:.9rem;
}

.project-location i{
    color:#d4a017;
    margin-top:5px;
}

.featured-content > p{
    color:#666;
    font-size:.95rem;
    line-height:1.9;
    margin-bottom:30px;
}

.project-highlights{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.project-highlights div{
    display:flex;
    align-items:center;
    gap:9px;
    color:#444;
    font-size:.85rem;
    font-weight:500;
}

.project-highlights i{
    color:#d4a017;
}

/* WHY US */

.why-section{
    padding:120px 0;
    background:#fff;
}

.why-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}

.why-item{
    position:relative;
    padding:45px 30px;
    border-right:1px solid #ddd;
    transition:.4s;
}

.why-item:last-child{
    border-right:none;
}

.why-item > span{
    display:block;
    color:#bbb;
    font-size:.8rem;
    font-weight:600;
    margin-bottom:30px;
}

.why-item i{
    color:#d4a017;
    font-size:2.1rem;
    margin-bottom:25px;
}

.why-item h3{
    color:#1d1535;
    font-size:1.1rem;
    margin-bottom:12px;
}

.why-item p{
    color:#777;
    font-size:.85rem;
    line-height:1.8;
}

.why-item:hover{
    background:#1d1535;
    transform:translateY(-5px);
}

.why-item:hover h3{
    color:#fff;
}

.why-item:hover p{
    color:#ccc;
}

.why-item:hover > span{
    color:#d4a017;
}

/* CTA */

.cta-section{
    position:relative;
    padding:120px 30px;
    text-align:center;
    background:
        linear-gradient(rgba(29,21,53,.94),rgba(29,21,53,.96)),
        url("../img/hero-building.jpg") center/cover;
    overflow:hidden;
}

.cta-content{
    position:relative;
    max-width:750px;
    margin:auto;
}

.cta-content h2{
    color:#fff;
    font-size:clamp(2.5rem,5vw,4.2rem);
    line-height:1.1;
    margin-bottom:20px;
}

.cta-content h2 span{
    color:#d4a017;
}

.cta-content p{
    color:#ccc;
    margin-bottom:35px;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        min-height:calc(100vh - 75px);
        padding:80px 20px;
    }

    .hero-content h1{
        font-size:2.7rem;
        letter-spacing:-1px;
    }

    .hero-content p{
        font-size:.95rem;
    }

    .hero-scroll{
        display:none;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons .btn{
        width:100%;
        max-width:280px;
    }

    .about-section{
        padding:80px 0;
    }

    .about-container{
        width:88%;
        grid-template-columns:1fr;
        gap:55px;
    }

    .about-image img{
        height:380px;
    }

    .about-experience{
        right:15px;
        bottom:20px;
        width:145px;
    }

    .about-content h2{
        font-size:2.3rem;
    }

    .services-section{
        padding:80px 0;
    }

    .section-heading{
        width:88%;
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:2.3rem;
    }

    .services-grid{
        width:88%;
        grid-template-columns:1fr;
        gap:18px;
    }

    .service-card{
        min-height:280px;
        padding:30px;
    }

    .featured-section{
        padding:80px 0;
    }

    .featured-container{
        width:88%;
    }

    .featured-heading{
        margin-bottom:40px;
    }

    .featured-heading h2{
        font-size:2.3rem;
    }

    .featured-project{
        grid-template-columns:1fr;
        gap:40px;
    }

    .featured-video video{
        height:400px;
    }

    .featured-content h3{
        font-size:2.2rem;
    }

    .project-highlights{
        grid-template-columns:1fr;
    }

    .featured-content .btn{
        width:100%;
    }

    .why-section{
        padding:80px 0;
    }

    .why-grid{
        width:88%;
        grid-template-columns:1fr;
    }

    .why-item{
        border-right:none;
        border-bottom:1px solid #ddd;
        padding:35px 25px;
    }

    .why-item:last-child{
        border-bottom:none;
    }

    .cta-section{
        padding:90px 25px;
    }

    .cta-content h2{
        font-size:2.7rem;
    }
}

/* SMALL PHONES */

@media(max-width:420px){

    .hero-content h1{
        font-size:2.35rem;
    }

    .hero-content p{
        font-size:.9rem;
    }

    .about-image img{
        height:320px;
    }

    .featured-video video{
        height:330px;
    }

    .featured-content h3{
        font-size:2rem;
    }

    .cta-content h2{
        font-size:2.3rem;
    }
}