:root{

--green:#6aa84f;
--dark:#111111;
--light:#ffffff;
--gray:#f5f5f5;
--bg-dark:#0f1318;
--card-bg:#181d24;
--green:#76b852;
--white:#ffffff;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;

}
html
{
    scroll-behavior: smooth;
}

.navbar{

position:fixed;
width:100%;
top:20px;
z-index:1002;
padding:0 30px;

}

.nav-container{
max-width:1400px;
margin:auto;
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 30px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(20px);
border-radius:24px;
border:1px solid rgba(255,255,255,.15);

}

.logo img{
height:55px;
}

.nav-menu{

display:flex;
gap:35px;
align-items:center;

}

.nav-menu a{

text-decoration:none;
color:white;
font-weight:500;

transition:.3s;

}

.nav-menu a:hover{
color:var(--green);
}

.nav-dropdown{
position:relative;
display:flex;
align-items:center;
}

.nav-dropdown-toggle{
border:none;
background:none;
font:inherit;
color:inherit;
cursor:pointer;
display:inline-flex;
align-items:center;
gap:8px;
}

.nav-dropdown-toggle::after{
content:"▾";
font-size:.75rem;
line-height:1;
transition:.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after{
transform:rotate(180deg);
}

.nav-dropdown-menu{
position:absolute;
top:100%;
left:0;
min-width:220px;
padding:14px 0 0;
border-radius:18px;
background:rgba(17,17,17,.96);
border:1px solid rgba(255,255,255,.12);
box-shadow:0 24px 50px rgba(0,0,0,.28);
display:grid;
gap:8px;
opacity:0;
visibility:hidden;
transform:translateY(12px);
pointer-events:none;
transition:.25s ease;
z-index:1000;
}

.nav-dropdown-menu a{
margin:0 12px;
padding:10px 12px;
border-radius:12px;
white-space:nowrap;
}

.nav-dropdown-menu a:hover{
background:rgba(255,255,255,.08);
color:var(--green);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
opacity:1;
visibility:visible;
transform:translateY(0);
pointer-events:auto;
}

.nav-btn{
background:var(--green);
color:white;
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.nav-btn:hover{

transform:translateY(-3px);

}

.hamburger{
    display:none;
    position:relative;
    z-index:1003;
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:5px;

}

.hamburger span{

    width:28px;
    height:3px;
    background:white;
    border-radius:50px;
    transition:.3s;

}




.hamburger.active span:nth-child(1){

    transform:
    rotate(45deg)
    translate(6px,6px);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(6px,-6px);

}
.navbar{
transition:.4s;
}

.navbar.active .nav-container{
background:
rgba(17, 17, 17, 0.658);
}




.estimate-hero{

    position:relative;

    height: 100vh;

    padding:
    120px 0%
    0px;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    #f5f3ee 0%,
    #ffffff 100%
    );

}

/* grid */
.hero-grid{

    display:grid;   
    
    grid-template-columns:
    1.1fr .9fr;

    gap:80px;

    align-items:center;

    /* position:relative; */

    z-index:2;

}

/* eyebrow */
.hero-eyebrow{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 18px;

    border-radius:50px;

    background:
    rgba(141,205,59,.08);

    color:#4f8d2d;

    font-weight:600;

    margin-bottom:25px;

}
.hero-eyebrow span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#8DCD3B;

}

/* title*/
.hero-content h1{

    font-size:
    clamp(3.5rem,4vw,6.5rem);

    line-height:.95;

    margin-bottom:25px;

    color:#1d2329;

}
.hero-content h1 span{

    display:block;

    color:#8DCD3B;

}

/* description */
.hero-content p{

    max-width:650px;

    color:#66707a;

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:35px;

}

/* trust */
.hero-trust{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;

}
.trust-item{

    padding:12px 18px;

    border-radius:50px;

    background:white;

    border:
    1px solid rgba(94, 134, 42, 0.877);
    color: #5ea63e;

    font-weight:600;

}

/* buttons */
.hero-buttons{

    display:flex;

    gap:18px;

}
.hero-btn{

    padding:
    18px 32px;

    border-radius:100px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}
.hero-btn.primary{

    background:
    linear-gradient(
    135deg,
    #8DCD3B,
    #76b852
    );

    color:white;

}
.hero-btn.primary:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px
    rgba(141,205,59,.3);

}
.hero-btn.secondary{

    border:
    1px solid rgba(0,0,0,.08);

    color:#1d2329;

    background:white;

}

/* visual */
.hero-visual{

    position:relative;

}

/* image */
.hero-image{

    overflow:hidden;

    will-change:transform;

    border-radius:
    80px 30px
    80px 30px;

    box-shadow:
    0 40px 100px
    rgba(0,0,0,.12);

}
.hero-image img{

    width:100%;
    height:75vh;
    display:block;

    will-change:transform;

    transition:transform .2s ease-out;

}
.container{
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
}

/* floating card */
.project-card{

    position:absolute;

    left:-40px;

    top:50%;

    transform:
    translateY(-50%);

    width:300px;

    backdrop-filter:
    blur(25px);

    background:
    rgba(255,255,255,.85);

    border:
    1px solid rgba(255,255,255,.4);

    border-radius:30px;

    padding:25px;

    z-index:3;

    animation:
    floatCard 6s ease-in-out infinite;

}
.card-header{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    margin-bottom:25px;

}
.status-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#8DCD3B;

}
.project-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

}
.project-row span{

    color:#66707a;

}

/* background effects */
.hero-glow{

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(141,205,59,.15);

    filter:blur(140px);

    top:-150px;

    right:-150px;

}
.hero-pattern{
    position:absolute;

    inset:0;

    background-image:
    radial-gradient(
    rgba(141,205,59,.06) 1px,
    transparent 1px
    );

    background-size:
    30px 30px;
    
    opacity:.5;

}



/*  */
@keyframes floatCard{

    0%,100%{

        transform:
        translateY(-50%);

    }

    50%{

        transform:
        translateY(-65%);

    }

}






.process-section{

    position:relative;

    padding:140px 0;

   
    background:var(--bg-dark);

    color:var(--white);


    overflow:hidden;

}

.process-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 90px;

}
.section-tag{

    display:inline-flex;

    align-items:center;

    padding:12px 22px;

    border-radius:50px;

     background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.25);

    color:var(--green);

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.process-header h2{

    font-size:
    clamp(2.8rem,5vw,5rem);

    line-height:1;

    margin-bottom:25px;

    color:white;


    
}
.process-header h2 span{

    color:var(--green);

}
.process-header p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    color:
    rgba(255,255,255,.75);

    font-size:1.05rem;

}
.process-wrapper{

    position:relative;

}
.process-line{

     position:absolute;

    top:95px;

    left:10%;

    width:80%;

    height:5px;

    border-radius:20px;

     background:
    rgba(255,255,255,.08);

    overflow:hidden;

}
.process-progress{

    background:
    linear-gradient(
    90deg,
    #76b852,
    #93cf73
    );

}
.process-pattern{

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(
        rgba(255,255,255,.04) 1px,
        transparent 1px
    );

    background-size:
    30px 30px;

    opacity:.5;

}
.process-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

}
.process-card{

    position:relative;

    z-index:2;

      background:
    rgba(24,29,36,.85);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.05);

    box-shadow:
    0 20px 50px rgba(0,0,0,.3);

    padding:35px;

    border-radius:32px;
    

    opacity:.55;

    transform:
    translateY(30px);

    transition:.45s;

}
.process-card:hover{

     transform:
    translateY(-12px);

    border-color:
    rgba(118,184,82,.3);

    box-shadow:
    0 25px 60px rgba(118,184,82,.15);


}
.process-card.active-step{

    opacity:1;

    transform:
    translateY(0);

    box-shadow:
    0 30px 70px
    rgba(142, 205, 59, 0.281);

}
.step-number{
        position:relative;

    width:70px;
    height:70px;

    border-radius:22px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    font-weight:800;

    font-size:1.2rem;

   background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.25);

    color:var(--green);

}
.step-number::after{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:24px;

    background:
    rgba(142, 205, 59, 0.356);

    z-index:-1;

    opacity:0;

    transition:.4s;

}
.process-card.active-step
.step-number::after{

    opacity:1;

}
.process-card h3{

    font-size:1.3rem;

    margin-bottom:15px;

    color:
    rgba(255,255,255,.65);

}
.process-card p{

    color:#66707a;

    line-height:1.8;

}
.response-card{

    width:340px;

    margin:
    80px auto 0;

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px;

    border-radius:28px;

    background:
    rgba(24,29,36,.9);

    backdrop-filter:
    blur(25px);

    border:
    1px solid rgba(118,184,82,.15);


    box-shadow:
    0 20px 60px rgba(0,0,0,.06);

    animation:
    floatTrust 5s ease-in-out infinite;

}
.response-icon{

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.5rem;

    background:
    rgba(118,184,82,.12);

    color:var(--green);

}
.response-card strong{

    display:block;

  color:white;

    margin-bottom:5px;

}
.response-card span{

   color:var(--green);

    font-weight:600;

}
.process-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(141,205,59,.08);

    filter:blur(120px);

    top:-150px;

    right:-150px;

}
.process-section::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(118,184,82,.06);

    filter:blur(120px);

    bottom:-250px;
    left:-150px;

}
.reveal{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    .8s ease;

}
.reveal.active{

    opacity:1;

    transform:
    translateY(0);

}
@keyframes floatTrust{

    0%,100%{

        transform:
        translateY(0);

    }

    50%{

        transform:
        translateY(-10px);

    }

}





.planning-center{

    position:relative;

    padding:140px 0;

    background:var(--bg-dark);

    overflow:hidden;

}
.planning-glow{

    position:absolute;

    border-radius:50%;

    background:var(--green);

    filter:blur(180px);

    opacity:.08;

}
.glow-1{

    width:600px;
    height:600px;

    top:-250px;
    right:-150px;

}
.glow-2{

    width:450px;
    height:450px;

    bottom:-150px;
    left:-150px;

}
.planning-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 80px;

}
.planning-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    border-radius:50px;

    background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.2);

    color:var(--green);

    margin-bottom:25px;

}
.planning-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--green);

}
.planning-header h2{

    color:white;

    font-size:
    clamp(3rem,6vw,5.5rem);

    line-height:1;

    margin-bottom:20px;

}
.planning-header h2 span{

    color:var(--green);

}
.planning-header p{

    max-width:700px;

    margin:auto;

    color:
    rgba(255,255,255,.7);

    line-height:1.8;

}

.planning-layout{

    display:grid;

    grid-template-columns:

    280px
    minmax(0,1fr)
    280px;

    gap:30px;

    align-items:start;

}

.progress-panel,
.trust-panel{

    position:sticky;

    top:120px;

}

.panel-card,
.stats-card,
.form-shell{

    background:
    rgba(24,29,36,.9);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.05);

    border-radius:32px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);

}

.panel-card{

    padding:30px;

}
.panel-card h3{

    color:white;

    margin-bottom:15px;

}
.panel-card p{

    color:
    rgba(255,255,255,.65);

}

.progress-wrapper{

    margin:25px 0;

}
.progress-bar{

    height:10px;

    border-radius:50px;

    overflow:hidden;

    background:
    rgba(255,255,255,.08);

}
.progress-fill{

    width:0%;

    height:100%;

    background:
    linear-gradient(
    90deg,
    #76b852,
    #9bd878
    );

}
.progress-percent{

    display:block;

    margin-top:12px;

    color:var(--green);

    font-weight:700;

}

.checklist{

    display:grid;

    gap:15px;

}
.check-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:
    rgba(255,255,255,.7);

}
.check-icon{

    width:12px;
    height:12px;

    border-radius:50%;

    background:
    rgba(255,255,255,.15);

}

.form-shell{

    padding:40px;

}
.form-shell-header{

    display:flex;

    gap:20px;

    align-items:center;

    margin-bottom:40px;

}
.shell-icon{

    width:70px;
    height:70px;

    border-radius:22px;

    background:
    rgba(118,184,82,.12);

    color:var(--green);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.5rem;

}
.form-shell-header h3{

    color:white;

    margin-bottom:5px;

}
.form-shell-header p{

    color:
    rgba(255,255,255,.65);

}

.form-placeholder{

    min-height:600px;

    border-radius:24px;

    border:2px dashed
    rgba(118,184,82,.25);

    display:flex;

    align-items:center;
    justify-content:center;

    color:var(--green);

    font-weight:700;

    letter-spacing:2px;

}

.trust-list{

    display:grid;

    gap:15px;

}
.trust-item{

    padding:14px 16px;

    border-radius:16px;

    background:
    rgba(255,255,255,.03);

}

.stats-card{

    margin-top:25px;

    padding:25px;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

}
.mini-stat{

    text-align:center;

}
.mini-stat strong{

    display:block;

    color:var(--green);

    font-size:1.7rem;

}
.mini-stat span{

    color:
    rgba(255,255,255,.6);

}
/* fomrulario */
.premium-form{

    display:grid;

    gap:30px;

}
.form-block{

    padding:35px;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

}
.block-header{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}
.block-header span{

    width:55px;
    height:55px;

    border-radius:18px;

    background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.2);

    color:var(--green);

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:700;

}
.block-header h4{

    color:white;

    margin-bottom:6px;

}
.block-header p{

    color:
    rgba(255,255,255,.65);

}
.service-cards{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:15px;

}
.service-card{

    position:relative;

    cursor:pointer;

    min-height:150px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.05);

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:15px;

    transition:.4s;

}
.service-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(118,184,82,.4);

}
.service-card i{

    font-size:2rem;

    color:var(--green);

}
.service-card span{

    color:white;

}
.service-card input{

    display:none;

}
.service-card.active{

    background:
    rgba(118,184,82,.12);

    border-color:
    var(--green);

}
.form-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

}
.premium-form input[type="text"],
.premium-form input[type="email"],
.premium-form input[type="tel"],
.premium-form textarea{

    width:100%;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:18px;

    color:white;

}
.premium-form textarea{

    resize:none;

}
.premium-form input:focus,
.premium-form textarea:focus{

    outline:none;

    border-color:
    var(--green);

}
.budget-cards{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

}
.budget-card{

    cursor:pointer;

    padding:20px;

    text-align:center;

    border-radius:20px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

}
.budget-card input{

    display:none;

}
.timeline-cards{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

}
.timeline-card{

    cursor:pointer;

    text-align:center;

    padding:20px;

    border-radius:20px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    color:white;

}
.timeline-card input{

    display:none;

}
.upload-zone{

    padding:60px;

    text-align:center;

    border-radius:28px;

    border:2px dashed
    rgba(118,184,82,.25);

}
.upload-zone i{

    font-size:3rem;

    color:var(--green);

    margin-bottom:20px;

}
.upload-zone h5{

    color:white;

    margin-bottom:10px;

}
.upload-zone p{

    color:
    rgba(255,255,255,.65);

}
.upload-zone input{

    margin-top:25px;

}
.premium-submit{

    height:75px;

    border:none;

    border-radius:70px;

    background:
    linear-gradient(
    135deg,
    #76b852,
    #4e9430
    );

    color:white;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.4s;

}
.premium-submit:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 50px rgba(118,184,82,.3);

}
.progress-ring{

    position:relative;

    width:120px;
    height:120px;

    margin:30px auto;

}
.progress-ring svg{

    width:120px;
    height:120px;

    transform:rotate(-90deg);

}
.ring-bg{

    fill:none;

    stroke:
    rgba(255,255,255,.08);

    stroke-width:10;

}
.ring-progress{

    fill:none;

    stroke:var(--green);

    stroke-width:10;

    stroke-linecap:round;

    stroke-dasharray:314;

    stroke-dashoffset:314;

    transition:.5s;

}
.ring-value{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;
    justify-content:center;

    color:white;

    font-weight:700;

    font-size:1.3rem;

}
.check-icon{

    width:22px;
    height:22px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.4s;

}
.check-icon i{

    opacity:0;

    font-size:.7rem;

}
.check-item.completed{

    color:white;

}
.check-item.completed .check-icon{

    background:var(--green);

}
.check-item.completed i{

    opacity:1;

}
.budget-card.active{

    background:
    rgba(118,184,82,.15);

    border-color:
    var(--green);

    color:white;}

.timeline-card.active{

    background:
    rgba(118,184,82,.15);

    border-color:
    var(--green);

}   
#previewGrid{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:25px;

}
.preview-thumb{

    width:100px;
    height:100px;

    object-fit:cover;

    border-radius:18px;

}
.complexity-meter{

    margin-top:30px;

}
.complexity-header{

    display:flex;

    justify-content:space-between;

    color:white;

    margin-bottom:12px;

}
.complexity-bar{

    height:12px;

    border-radius:50px;

    overflow:hidden;

    background:
    rgba(255,255,255,.08);

}
#complexityFill{

    width:20%;

    height:100%;

    background:
    linear-gradient(
    90deg,
    #76b852,
    #9bd878
    );

    transition:.5s;

}





.footer{

    position:relative;

    background:#11161c;

    color:white;

    padding:
    140px 0 40px;

    overflow:hidden;

}

.footer-glow{

    position:absolute;

    width:600px;
    height:600px;

    background:#8DCD3B;

    opacity:.12;


    border-radius:50%;

    top:-250px;
    right:-250px;

    filter:blur(220px);

}
.footer-cta{

    text-align:center;

    max-width:850px;

    margin:
    0 auto 100px;

}

.footer-tag{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.2);

    color:#76b852;

    margin-bottom:25px;

}

.footer-cta h2{

    font-size:
    clamp(3rem,5vw,5rem);

    line-height:1.1;

}

.footer-cta h2 span{

    display:block;

    color:#8DCD3B;

}

.footer-cta p{

    color:#b6bcc2;

    max-width:700px;

    margin:
    25px auto;

    line-height:1.8;

}
.footer-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
    18px 36px;

    border-radius:100px;

    background:
    linear-gradient(
    135deg,
    #76b852,
    #5ea63e
    );

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.footer-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px
    rgba(118,184,82,.3);

}

.footer-grid{

    display:grid;

    grid-template-columns:
1.8fr
1fr
1fr
1fr;

    gap:50px;

    padding-bottom:60px;

    border-bottom:
    1px solid rgba(255,255,255,.08);

}

.footer-logo{

    position:relative;
}
.footer-logo::after{
    content:"";

    position:absolute;

    width:200px;
    height:200px;

    background:#99ff62ab;


    border-radius:50%;

    top:-50px;
    left:-50px;

    filter:blur(120px);
}

.footer-badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;
    margin-bottom:20px;

}
.footer-badges span{

    padding:10px 16px;

    border-radius:50px;

    background:
    rgba(141,205,59,.1);

    border:
    1px solid rgba(141,205,59,.2);

    color:#8DCD3B;

    font-size:.85rem;

}

.footer-column h4{

    margin-bottom:25px;

    color:white;

}

.footer-column a{

    display:block;

    color:#b6bcc2;

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;

}

.footer-column a:hover{

    color:#76b852;

    transform:
    translateX(5px);

}

.social-links{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-links a{

    width:50px;
    height:50px;
    text-align: center;
    font-size: 2.5rem;
    border-radius:50%;

    backdrop-filter:blur(20px);

    background:
    rgba(255,255,255,.05);
    color:white;

}

.social-links a:hover{

    background:#76b852;

}

.footer-trust{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

    margin:
    50px 0;

}

.footer-trust div{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.06);

    padding:18px;

    border-radius:18px;

    text-align:center;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.footer-bottom p{

    color:#8b949e;

}

.footer-bottom a{

    color:#8b949e;

    text-decoration:none;

    margin-left:20px;

}
.footer-logo img{

    width:130px;

    height:auto;

}






@media (max-width:1200px){
    .planning-layout{

    grid-template-columns:
    250px
    minmax(0,1fr);

}

.trust-panel{

    display:none;

}

.process-grid{

    gap:20px;

}

.process-card{

    padding:28px;

}

.process-card h3{

    font-size:1.15rem;

}

}

@media (max-width:991px){
.service-cards{

    grid-template-columns:
    repeat(2,1fr);

}

.budget-cards,
.timeline-cards{

    grid-template-columns:
    repeat(2,1fr);

}


    .process-line{

    display:none;

}

.process-grid{

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

}

.process-card{

    padding:30px;

}

.response-card{

    margin-top:60px;

}

    .hero-grid{

    grid-template-columns:
    1fr;

}

.project-card{

    position:relative;

    left:auto;
    top:auto;

    transform:none;

    margin:
    -80px auto 0;

}

.hero-content{

    text-align:center;

}

.hero-trust{

    justify-content:center;

}

.hero-buttons{

    justify-content:center;

}


    .nav-menu{

    position:fixed;

    top:0;
    right:-200%;

    width:min(320px, 100vw);
    height:100vh;

    background:#111;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:35px;

    padding:110px 32px 32px;

    overflow-y:auto;

    transition:.4s;

}

.nav-menu.active{

    right:0;

}

.hamburger{

    display:flex;

}

.nav-btn{

    display:none;

}

.nav-menu > a{
    width:100%;
    text-align:center;
}

.nav-dropdown{
    width:100%;
    flex-direction:column;
    align-items:center;
}

.nav-dropdown-toggle{
    width:100%;
    justify-content:center;
}

.nav-dropdown-menu{
    position:static;
    min-width:0;
    width:100%;
    margin-top:12px;
    padding:0;
    border:none;
    border-left:none;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    display:none;
    justify-items:center;
}

.nav-dropdown-menu a{
    margin:0;
    width:100%;
    text-align:center;
}

.nav-dropdown.open .nav-dropdown-menu{
    display:grid;
}

    .nav-dropdown{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-dropdown-toggle{
        width:100%;
        text-align:left;
        padding:12px 0;
    }

    .nav-dropdown-menu{
        position:static;
        width:100%;
        margin-top:10px;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        pointer-events:auto;

        background:rgba(255,255,255,.04);
        border:none;
        box-shadow:none;
    }

    .nav-dropdown.open .nav-dropdown-menu{
        display:grid;
    }
}

@media (max-width:768px){
    .hero-image img{
        display:none;
    }
    .project-card
    {
        display: none;
    }

 .footer-grid{

        grid-template-columns:
        1fr;

    }

    .footer-trust{

        grid-template-columns:
        1fr;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .form-grid{

    grid-template-columns:1fr;

}

.service-cards{

    grid-template-columns:1fr;

}

.budget-cards,
.timeline-cards{

    grid-template-columns:1fr;

}

.form-block{

    padding:25px;

}

.upload-zone{

    padding:40px 20px;

}

.planning-center{

    padding:100px 0;

}

.planning-layout{

    grid-template-columns:1fr;

}

.progress-panel,
.trust-panel{

    position:relative;

    top:auto;

}

.progress-panel{

    order:2;

}

.form-shell{

    order:1;

}

.planning-header h2{

    font-size:2.8rem;

}

.form-shell{

    padding:25px;

}

.form-shell-header{

    flex-direction:column;

    text-align:center;

}
.process-card{

    padding:30px;

}

.step-number{

    width:60px;
    height:60px;

    font-size:1rem;

}
  

    .process-section{

    padding:100px 0;

}

.process-header{

    margin-bottom:60px;

}

.process-header h2{

    font-size:2.7rem;

}

.process-header p{

    font-size:.95rem;

}


    .nav-container{

    height:80px;

}

  .process-grid{

    grid-template-columns:1fr;
    gap:20px;

}
}

@media (max-width:576px){
    


    .response-card{

    flex-direction:column;

    text-align:center;

    padding:25px;

}
.process-card{

    padding:25px;

    border-radius:24px;

}

.process-card h3{

    font-size:1.15rem;

}

.process-card p{

    font-size:.95rem;

}
.hero-trust
{
    display: none;
}
}