*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit','Poppins',sans-serif;
    background:#faf8f3;
    color:#111;
    overflow-x:hidden;
    margin:0;
}

a{
    text-decoration:none;
    color:#fff;
}

img{
    display:block;
    max-width:100%;
}

/* Respect users who disable motion */
@media (prefers-reduced-motion: reduce){
    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
        scroll-behavior:auto !important;
    }
}
:root{
    --primary:#ffbe0b;
    --dark:#111111;
    --dark-2:#181818;
    --gray:#777777;
    --gray-light:#cfcfcf;
    --radius:18px;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:90%;
    max-width:1400px;
    height:78px;

    padding:0 32px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(18,18,18,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;

    box-shadow:
    0 20px 45px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08);

    transition:top .4s,height .4s,background .4s,box-shadow .4s,transform .4s;

    z-index:9999;
}

.navbar.scrolled{
    top:12px;
    height:68px;
    background:rgba(18,18,18,.94);
}

.navbar.hide{
    transform:translate(-50%,-120px);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.logo-icon{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--primary);
    font-size:26px;
    flex-shrink:0;
}

.logo h2{
    font-size:clamp(20px,2.2vw,28px);
    color:#fff;
    font-weight:800;
    letter-spacing:1px;
    white-space:nowrap;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--primary);
}

.menu-btn{
    display:none;
    justify-content:center;
    align-items:center;
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.12);
    outline:none;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    color:#fff;
    cursor:pointer;
    transition:.35s cubic-bezier(.22,1,.36,1);
}

.menu-btn i{
    font-size:26px;
    transition:.35s;
}

.menu-btn:hover{
    background:rgba(255,190,11,.18);
}

.menu-btn.active{
    background:var(--primary);
    color:#111;
}
@media(max-width:991px){

    /* ---- Header / hamburger ---- */

    .navbar{
        width:92%;
        height:64px;
        top:15px;
        padding:0 18px;
        border-radius:16px;
    }

    .logo-icon{
        width:36px;
        height:36px;
        font-size:22px;
    }

    .logo h2{
        font-size:22px;
    }

    .menu-btn{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:calc(100% + 12px);
        left:0;
        right:0;
        width:100%;
        margin:auto;
        background:rgba(18,18,18,.96);
        backdrop-filter:blur(24px);
        border:1px solid rgba(255,255,255,.08);
        border-radius:18px;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        gap:8px;

        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:translateY(-14px) scale(.97);
        transition:opacity .4s ease,transform .4s cubic-bezier(.22,1,.36,1),visibility .4s;
        box-shadow:0 25px 60px rgba(0,0,0,.45);
    }

    .nav-links.active{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateY(0) scale(1);
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:flex;
        justify-content:center;
        align-items:center;
        height:52px;
        border-radius:12px;
        background:rgba(255,255,255,.04);
        font-size:16px;
        font-weight:600;
        transition:.3s;
    }

    .nav-links a:hover,
    .nav-links a.active{
        background:rgba(255,190,11,.16);
        color:var(--primary);
    }

    /* ---- Hero ---- */

    .hero{
        padding:150px 0 90px;
    }

    .hero .container{
        flex-direction:column;
        text-align:center;
        gap:60px;
    }

    .breadcrumb,
    .hero-badge{
        justify-content:center;
        margin-left:auto;
        margin-right:auto;
    }

    .breadcrumb{
        justify-content:center;
    }

    .hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        width:100%;
        max-width:480px;
        margin:0 auto 60px;
    }

    .card-1{ top:-20px; left:-10px; }
    .card-2{ bottom:60px; right:-10px; }
    .card-3{ bottom:-24px; left:10px; }

    /* ---- Contact ---- */

    .contact-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-form{
        padding:36px;
    }

    /* ---- Why ---- */

    .why .container{
        flex-direction:column-reverse;
        text-align:center;
        gap:45px;
    }

    .why-item{
        text-align:left;
    }

    .why-right img{
        height:380px;
    }
}

@media(max-width:900px){

    .menu-btn{
        display:flex;
    }

    .navbar ul.nav-links{
        position:fixed;
        top:110px;
        left:50%;
        transform:translate(-50%, -20px);

        width:90%;
        max-width:420px;

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:20px;

        background:rgba(18,18,18,.96);
        backdrop-filter:blur(18px);

        border:1px solid rgba(255,255,255,.1);
        border-radius:22px;

        padding:30px 20px;

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        transition:
            opacity .35s ease,
            transform .35s ease,
            visibility .35s ease;

        z-index:9998;
    }

    .navbar ul.nav-links.open{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translate(-50%, 0);
    }

    .navbar ul.nav-links li{
        width:100%;
        text-align:center;
    }

    .navbar ul.nav-links li a{
        display:block;
        padding:10px;
        color:#fff;
    }

}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
/* =========================================================
   HERO
   ========================================================= */
.hero-projects{
    position:relative;
    padding:190px 0;
    overflow:hidden;
    background:#faf8f3;
}

.hero-projects::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-100px;
    width:700px;
    height:700px;
    border:2px solid #d7d7d7;
    border-radius:45%;
    transform:rotate(-18deg);
    opacity:.5;
}

.hero-projects::after{
    content:"";
    position:absolute;
    bottom:-250px;
    left:-180px;
    width:700px;
    height:700px;
    border:2px solid #d7d7d7;
    border-radius:40%;
    transform:rotate(25deg);
    opacity:.35;
}

.hero-container{
    width:90%;
    max-width:1350px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    position:relative;
    z-index:2;
}

.hero-content{
    flex:1;
    max-width:560px;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:35px;
    font-size:14px;
    font-weight:600;
}

.breadcrumb span:first-child{
    color:#d89d18;
}

.breadcrumb span:last-child{
    color:#888;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.08;
    margin-bottom:30px;
    letter-spacing:-2px;
}

.hero-content h1 span{
    display:block;
    color:#d89d18;
}

.hero-content p{
    font-size:18px;
    line-height:34px;
    color:#666;
    max-width:500px;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 34px;
    background:#d89d18;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
    box-shadow:0 20px 40px rgba(216,157,24,.28);
}

.btn-primary:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 50px rgba(216,157,24,.38);
}

.btn-primary i{
    width:34px;
    height:34px;
    background:#fff;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    transition:transform .35s;
}

.btn-primary:hover i{
    transform:translateX(4px);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:18px 34px;
    border:2px solid #222;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    color:#111;
    transition:background .35s, color .35s;
    background:#fff;
}

.btn-outline:hover{
    background:#111;
    color:#fff;
}

.btn-outline i{
    font-size:14px;
}

/* RIGHT SIDE */
.hero-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:flex-end;
}

.hero-image img{
    width:100%;
    max-width:640px;
    height:520px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}

.hero-stats{
    position:absolute;
    left:50%;
    bottom:-40px;
    transform:translateX(-50%);
    display:flex;
    gap:18px;
    width:max-content;
}

.stat-box{
    width:190px;
    background:#fff;
    border-radius:22px;
    padding:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:transform .35s, box-shadow .35s;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.16);
}

.stat-box .icon{
    width:48px;
    height:48px;
    background:#d89d18;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    margin-bottom:18px;
}

.stat-box h3{
    font-size:38px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.stat-box p{
    font-size:15px;
    line-height:24px;
    color:#666;
}

@media(max-width:991px){

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-image{
        margin-top:70px;
        flex-direction:column;
        align-items:center;
    }

    .hero-image img{
        height:auto;
    }

    .hero-stats{
        position:relative;
        left:0;
        bottom:0;
        transform:none;
        width:100%;
                        margin-left: 20px;
        max-width:500px;
        margin-top:25px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .stat-box{
        width:120px;
        height: 100px;
    }
    .stat-box i{
    }
    .hero-content h1{
        font-size:48px;
    }
}

@media(max-width:600px){
    .hero-projects{
        padding:150px 0 260px;
    }

    .hero-content h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .hero-content p{
        font-size:16px;
        line-height:28px;
        margin-inline:auto;
    }
}

@media(max-width:420px){
    .hero-projects{
        padding:135px 0 240px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        justify-content:center;
    }

    .stat-box{
        width:140px;
        padding:18px;
    }

    .stat-box h3{
        font-size:28px;
    }
}

/*=========================================
        ESTATE FEATURE SECTION
=========================================*/

.estate-feature{
    padding:120px 0;
    background:#faf8f4;
    position:relative;
    overflow:hidden;
}

.layout-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*=========================================
            HEADER
=========================================*/

.estate-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:80px;
    margin-bottom:80px;
}

.estate-badge{
    display:inline-block;
    color:#D89D18;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
}

.estate-title h2{
    font-size:64px;
    line-height:1.08;
    color:#111;
    margin:0;
    font-weight:800;
}

.estate-intro{
    max-width:430px;
}

.estate-intro p{
    color:#666;
    font-size:17px;
    line-height:32px;
    margin:0 0 35px;
}

.estate-link{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.estate-link:hover{
    color:#D89D18;
}

/*=========================================
            MAIN SHOWCASE
=========================================*/

.estate-showcase{
    display:grid;
    grid-template-columns:1.55fr .9fr;
    gap:70px;
    align-items:center;
}

.estate-photo{
    position:relative;
    overflow:hidden;
    border-radius:30px;
}

.estate-photo img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
    transition:.7s;
}

.estate-photo:hover img{
    transform:scale(1.08);
}

.estate-label{
    position:absolute;
    left:35px;
    bottom:35px;
    background:#fff;
    padding:14px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    color:#111;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.estate-details{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.estate-type{
    color:#D89D18;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.estate-details h3{
    font-size:52px;
    line-height:1.1;
    color:#111;
    margin:0;
    font-weight:800;
}

.estate-details p{
    color:#666;
    line-height:32px;
    font-size:17px;
    margin:0;
}

.estate-numbers{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.number-box{
    background:#fff;
    padding:26px;
    border-radius:20px;
    border:1px solid #ececec;
    transition:.35s;
}

.number-box:hover{
    transform:translateY(-8px);
    border-color:#D89D18;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.number-box span{
    display:block;
    color:#999;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.number-box strong{
    color:#111;
    font-size:24px;
    font-weight:700;
}

.estate-action{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:max-content;
    padding:18px 36px;
    background:#D89D18;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-size:16px;
    font-weight:700;
    transition:.35s;
}

.estate-action:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(216,157,24,.35);
}

/* Scroll-reveal for the estate/featured-project section */
.estate-title,
.estate-intro{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}

.estate-feature.in-view .estate-title{
    opacity:1;
    transform:translateY(0);
}

.estate-feature.in-view .estate-intro{
    opacity:1;
    transform:translateY(0);
    transition-delay:.1s;
}

.estate-photo{
    opacity:0;
    transform:translateX(-40px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1) .1s, transform .9s cubic-bezier(.16,.84,.44,1) .1s;
}

.estate-feature.in-view .estate-photo{
    opacity:1;
    transform:translateX(0);
}

.estate-details{
    opacity:0;
    transform:translateX(40px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1) .2s, transform .9s cubic-bezier(.16,.84,.44,1) .2s;
}

.estate-feature.in-view .estate-details{
    opacity:1;
    transform:translateX(0);
}

@media(max-width:1100px){

    .estate-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .estate-showcase{
        grid-template-columns:1fr;
    }

    .estate-title h2{
        font-size:45px;
    }

    .estate-details h3{
        font-size:40px;
    }

    .estate-photo,
    .estate-details{
        transform:translateY(30px);
    }

    .estate-feature.in-view .estate-photo,
    .estate-feature.in-view .estate-details{
        transform:translateY(0);
    }
}

@media(max-width:600px){

    .estate-feature{
        padding:80px 0;
    }

    .estate-photo img{
        height:340px;
    }

    .estate-numbers{
        grid-template-columns:1fr;
    }

    .estate-title h2{
        font-size:32px;
    }

    .estate-details h3{
        font-size:30px;
    }

    .estate-action{
        width:100%;
    }
}

.projects-grid{
    padding:10px 0 50px;
    background:#faf8f3;
}

.projects-grid .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*=========================
        HEADER
==========================*/

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.section-head h2{
    font-size:42px;
    font-weight:800;
    color:#111;
}

.section-head a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#d89d18;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.section-head a:hover{
    gap:18px;
}

/*=========================
        GRID
==========================*/

.projects-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/*=========================
        CARD
==========================*/

.project-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    transition:transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.project-image{
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#fff;
    border-radius:30px;
    padding:8px 16px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:600;
    color:#333;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:background .35s, color .35s;
}

.badge i{
    color:#d89d18;
    transition:color .35s;
}

.project-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    padding:24px;
    gap:15px;
}

.project-content h3{
    font-size:25px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    transition:.35s;
}

.project-card:hover h3{
    color:#D89D18;
}

.project-content p{
    display:flex;
    align-items:center;
    gap:8px;
    color:#777;
    font-size:15px;
}

.project-content p i{
    color:#D89D18;
    font-size:18px;
}

.arrow-btn{
    width:55px;
    height:55px;
    background:#D89D18;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    flex-shrink:0;
    transition:.35s;
    box-shadow:0 15px 35px rgba(216,157,24,.35);
}

.arrow-btn:hover{
    background:#111;
    transform:rotate(-45deg) scale(1.08);
}

.project-card:hover .badge{
    background:#D89D18;
    color:#fff;
}

.project-card:hover .badge i{
    color:#fff;
}

.section-head{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}

.projects-grid.in-view .section-head{
    opacity:1;
    transform:translateY(0);
}

.project-card{
    opacity:0;
    transform:translateY(45px);
}

.projects-grid.in-view .project-card{
    opacity:1;
    transform:translateY(0);
    transition:transform .5s cubic-bezier(.16,.84,.44,1), opacity .7s cubic-bezier(.16,.84,.44,1), box-shadow .4s;
}

.projects-grid.in-view .project-card:nth-child(1){ transition-delay:.05s; }
.projects-grid.in-view .project-card:nth-child(2){ transition-delay:.18s; }
.projects-grid.in-view .project-card:nth-child(3){ transition-delay:.31s; }

@media(max-width:1200px){

.projects-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.section-head{
    flex-direction:column;
    gap:20px;
    align-items:flex-start;
}

.section-head h2{
    font-size:34px;
}

.projects-wrapper{
    grid-template-columns:1fr;
}

.project-image img{
    height:230px;
}

.project-content{
    padding:20px;
}

.project-content h3{
    font-size:22px;
}

.arrow-btn{
    width:48px;
    height:48px;
    font-size:20px;
}

}

@media(max-width:480px){

.project-image img{
    height:200px;
}

.badge{
    font-size:12px;
    padding:7px 14px;
}

.project-content{
    flex-direction:column;
    align-items:flex-start;
}

.arrow-btn{
    margin-top:15px;
}

}
/* =========================================================
   STATS SECTION
   ========================================================= */

.counter-section{
    background:#111;
    padding:45px 0;
    overflow:hidden;
}

.counter-wrapper{
    width:90%;
    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.counter-item{
    display:flex;
    align-items:center;
    gap:18px;

    opacity:0;
    transform:translateY(30px);
    transition:opacity .7s cubic-bezier(.16,.84,.44,1),
               transform .7s cubic-bezier(.16,.84,.44,1);
}

.counter-section.in-view .counter-item{
    opacity:1;
    transform:translateY(0);
}

.counter-section.in-view .counter-item:nth-child(1){
    transition-delay:.05s;
}

.counter-section.in-view .counter-item:nth-child(2){
    transition-delay:.15s;
}

.counter-section.in-view .counter-item:nth-child(3){
    transition-delay:.25s;
}

.counter-section.in-view .counter-item:nth-child(4){
    transition-delay:.35s;
}

.counter-icon{
    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:40px;
    color:#d9a320;
    transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}

.counter-content h2{
    color:#fff;
    font-size:clamp(30px,4vw,46px);
    font-weight:800;
    line-height:1;
    margin-bottom:8px;
}

.counter-content p{
    color:#bdbdbd;
    font-size:16px;
    font-weight:500;
}

.counter-item:hover .counter-icon{
    transform:scale(1.15);
}

.counter-item:hover h2{
    color:#d9a320;
    transition:color .4s;
}

@media(max-width:992px){

.counter-wrapper{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

}

@media(max-width:600px){

.counter-wrapper{
    grid-template-columns:1fr;
    text-align:center;
    gap:28px;
}

.counter-item{
    justify-content:center;
    flex-direction:column;
}

}
/* =========================================================
   MODERN PROCESS
   ========================================================= */
.process-modern{
    padding:100px 8%;
    background:#fff;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.process-image{
    position:relative;
    height:650px;
    overflow:hidden;

    opacity:0;
    transform:translateX(-60px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1);
}

.process-modern.in-view .process-image{
    opacity:1;
    transform:translateX(0);
}

.process-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.16,.84,.44,1);
}

.process-image:hover img{
    transform:scale(1.06);
}

.process-overlay{
    position:absolute;
    bottom:40px;
    left:40px;
    background:#111;
    color:white;
    padding:35px 45px;
    border-left:5px solid #d89b2b;
}

.process-overlay h2{
    font-size:clamp(38px,4.5vw,60px);
    margin:0;
    color:#d89b2b;
}

.process-overlay p{
    margin:5px 0 0;
    font-size:17px;
}

.process-content{
    opacity:0;
    transform:translateX(60px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1) .1s, transform .9s cubic-bezier(.16,.84,.44,1) .1s;
}

.process-modern.in-view .process-content{
    opacity:1;
    transform:translateX(0);
}

.process-content span{
    color:#d89b2b;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.process-content h2{
    font-size:clamp(28px,3.5vw,45px);
    line-height:1.2;
    margin:15px 0 20px;
    color:#111;
}

.intro{
    color:#666;
    line-height:1.8;
    margin-bottom:45px;
}

.process-step{
    display:flex;
    gap:30px;
    padding:25px 0;
    border-bottom:1px solid #ddd;
    transition:padding .4s, opacity .6s cubic-bezier(.16,.84,.44,1), transform .6s cubic-bezier(.16,.84,.44,1);

    opacity:0;
    transform:translateY(20px);
}

.process-step:last-child{
    border-bottom:none;
}

.process-modern.in-view .process-step{
    opacity:1;
    transform:translateY(0);
}

.process-modern.in-view .process-step:nth-of-type(1){ transition-delay:.25s; }
.process-modern.in-view .process-step:nth-of-type(2){ transition-delay:.35s; }
.process-modern.in-view .process-step:nth-of-type(3){ transition-delay:.45s; }
.process-modern.in-view .process-step:nth-of-type(4){ transition-delay:.55s; }

.step-number{
    font-size:45px;
    font-weight:800;
    color:#ddd;
    min-width:70px;
    transition:color .4s, transform .4s;
}

.process-step h3{
    margin:0 0 10px;
    font-size:23px;
    color:#111;
}

.process-step p{
    color:#777;
    line-height:1.6;
    margin:0;
}

.process-step:hover .step-number{
    color:#d89b2b;
    transform:translateX(10px);
}

.process-step:hover{
    padding-left:15px;
}

@media(max-width:1000px){

    .process-modern{
        grid-template-columns:1fr;
        gap:50px;
    }

    .process-image{
        height:500px;
        transform:translateY(40px);
    }

    .process-modern.in-view .process-image{
        transform:translateY(0);
    }

    .process-content{
        transform:translateY(40px);
    }

    .process-modern.in-view .process-content{
        transform:translateY(0);
    }

}

@media(max-width:600px){

    .process-modern{
        padding:70px 5%;
    }

    .process-image{
        height:380px;
    }

    .process-overlay{
        left:20px;
        bottom:20px;
        padding:20px;
    }

    .process-step{
        gap:18px;
    }

    .step-number{
        font-size:32px;
        min-width:45px;
    }

}

@media(max-width:420px){

    .process-overlay{
        padding:14px 16px;
        left:14px;
        bottom:14px;
    }

    .process-overlay h2{
        font-size:32px;
    }

    .process-overlay p{
        font-size:13px;
    }

    .process-content h2{
        font-size:24px;
    }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section{
    padding:120px 8%;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.5)
    ),
    url("https://benews.co.uk/wp-content/uploads/2023/07/shutterstock_617032220.jpg");
    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
}

.cta-content{
    max-width:800px;
    color:white;

    opacity:0;
    transform:translateY(40px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1);
}

.cta-section.in-view .cta-content{
    opacity:1;
    transform:translateY(0);
}

.cta-content span{
    color:#d89b2b;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.cta-content h2{
    font-size:clamp(28px,4.5vw,55px);
    line-height:1.15;
    margin:20px 0;
}

.cta-content p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.cta-buttons{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:40px;
}

.cta-primary{
    background:#d89b2b;
    color:#111;
    padding:18px 35px;
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    border-radius:50px;
    transition:background .3s, transform .3s cubic-bezier(.34,1.56,.64,1);
}

.cta-primary:hover{
    background:white;
    transform:translateY(-3px);
}

.cta-phone{
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
}

.cta-phone i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d89b2b;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}

.cta-phone:hover i{
    transform:scale(1.12) rotate(10deg);
}

@media(max-width:700px){

    .cta-section{
        padding:80px 5%;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

}

@media(max-width:420px){

    .cta-section{
        padding:60px 6%;
    }

    .cta-buttons{
        width:100%;
    }

    .cta-primary{
        width:100%;
        justify-content:center;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:var(--dark);
    color:#fff;
    padding:80px 8% 0;
}

.footer-container{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-logo .logo-icon{
    width:44px;
    height:44px;
    background:var(--primary);
    color:#111;
    border-radius:50%;
}

.footer-logo h2{
    font-size:28px;
    color:#fff;
}

.footer-about p{
    color:#aaa;
    line-height:1.8;
    margin:22px 0;
    font-size:14px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#222;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
    color:#111;
}

.footer h3{
    font-size:19px;
    margin-bottom:24px;
    color:#fff;
}

.footer-links a{
    display:block;
    color:#aaa;
    margin-bottom:14px;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    color:#aaa;
    margin-bottom:16px;
    font-size:14px;
}

.footer-contact i{
    color:var(--primary);
    font-size:20px;
}

.footer-bottom{
    margin-top:55px;
    padding:25px 0;
    border-top:1px solid #2a2a2a;
    display:flex;
    justify-content:space-between;
    color:#888;
    font-size:13px;
}

.footer-bottom div a{
    color:#888;
    margin-left:20px;
    transition:.3s;
}

.footer-bottom div a:hover{
    color:var(--primary);
}



@media(max-width:480px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact p{
        justify-content:center;
    }
}

/* =========================================================
   ENTRANCE ANIMATIONS — hero (loads on page-load, not scroll)
   ========================================================= */
@keyframes fadeUp{
    from{ opacity:0; transform:translateY(36px); }
    to{ opacity:1; transform:translateY(0); }
}

@keyframes fadeInSoft{
    from{ opacity:0; transform:scale(.97); }
    to{ opacity:1; transform:scale(1); }
}

.hero-content{
    animation:fadeUp .9s cubic-bezier(.16,.84,.44,1) .15s both;
}

.hero-image{
    animation:fadeInSoft 1s cubic-bezier(.16,.84,.44,1) .3s both;
}

.stat-box{
    opacity:0;
    animation:fadeUp .8s cubic-bezier(.16,.84,.44,1) both;
}

.stat-box:nth-child(1){ animation-delay:.55s; }
.stat-box:nth-child(2){ animation-delay:.68s; }
.stat-box:nth-child(3){ animation-delay:.81s; }