:root{
    --brand:#1f5a38;
    --brand-dark:#15231a;
    --brand-soft:#eaf3ed;
    --grey:#6a6f6b;
    --dark:#151515;
    --light:#f4f8f5;
}

*{
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    color:#222;
    background:#fff;
}

a{
    color:var(--brand);
}

img{
    max-width:100%;
}

/* =========================
   HEADER
========================= */

.topbar{
    background:#0f1720;
    color:#fff;
    font-size:14px;
}

.topbar a{
    color:#fff;
    text-decoration:none;
}

.navbar{
    padding:14px 0;
    background:#fff !important;
    transition:.3s;
    z-index:999;
}

.navbar-brand{
    padding:0;
}

.logo{
    height:62px;
    width:auto;
}

.navbar .nav-link{
    color:#1b1b1b !important;
    font-weight:600;
    padding:12px 16px !important;
    transition:.2s;
}

.navbar .nav-link:hover{
    color:var(--brand) !important;
}

.navbar .dropdown-menu{
    border:0;
    border-radius:18px;
    padding:14px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.navbar .dropdown-item{
    padding:10px 14px;
    border-radius:12px;
    font-weight:500;
}

.navbar .dropdown-item:hover{
    background:#eef5f0;
    color:var(--brand);
}

.btn-brand{
    background:var(--brand);
    border:1px solid var(--brand);
    color:#fff;
    border-radius:14px;
    padding:12px 22px;
    font-weight:700;
}

.btn-brand:hover{
    background:#16442a;
    border-color:#16442a;
    color:#fff;
}

/* =========================
   HOMEPAGE SLIDER
========================= */

.hero-slider{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f7fbf8,#eaf3ed);
}

.hero-slide{
    display:none;
    padding:90px 0;
}

.hero-slide.active{
    display:block;
}

.hero-slide h1{
    font-size:clamp(2.2rem,5vw,4.2rem);
    font-weight:800;
    line-height:1.05;
}

.hero-slide .lead{
    font-size:1.2rem;
    color:#4d4d4d;
}

.hero{
    padding:95px 0;
    background:linear-gradient(135deg,#f7fbf8,#eaf3ed);
}

.hero h1{
    font-size:clamp(2.2rem,5vw,4.2rem);
    font-weight:800;
    line-height:1.05;
}

.hero .lead{
    font-size:1.2rem;
    color:#4d4d4d;
}

.hero-card,
.hero-visual,
.form-card,
.quote-box{
    background:#fff;
    border:1px solid #e5e8e6;
    border-radius:22px;
    padding:32px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
}

.hero-visual{
    border-radius:28px;
    box-shadow:0 18px 50px rgba(0,0,0,.09);
}

.hero-visual i{
    font-size:52px;
    color:var(--brand);
}

.hero-card ul{
    margin:0;
    padding-left:20px;
}

.hero-dots{
    display:flex;
    gap:8px;
    justify-content:center;
    position:absolute;
    left:0;
    right:0;
    bottom:28px;
    z-index:5;
}

.hero-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    border:0;
    background:#cbd5e1;
    cursor:pointer;
}

.hero-dot.active{
    background:var(--brand);
}

.eyebrow{
    color:var(--brand);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

/* =========================
   COMMON SECTIONS
========================= */

.trust{
    background:#15231a;
    color:#fff;
}

.trust span{
    display:block;
    color:#c7d5ca;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 42px;
}

.section-title h2{
    font-weight:800;
}

.service-card{
    display:block;
    height:100%;
    padding:30px;
    border:1px solid #e4e7e5;
    border-radius:20px;
    text-decoration:none;
    color:#222;
    background:#fff;
    transition:.2s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    color:#222;
}

.service-card i{
    font-size:38px;
    color:var(--brand);
}

.service-card h3{
    font-size:1.25rem;
    font-weight:800;
    margin-top:18px;
}

.mini-card,
.case-card{
    background:#fff;
    border:1px solid #e4e7e5;
    border-radius:18px;
    padding:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.process > div{
    padding:28px;
}

.process b{
    color:var(--brand);
    font-size:34px;
}

.cta{
    padding:72px 0;
    background:linear-gradient(135deg,#1f5a38,#15231a);
    color:#fff;
}

.page-hero{
    padding:70px 0;
    background:linear-gradient(135deg,#15231a,#1f5a38);
    color:#fff;
}

.page-hero h1{
    font-weight:800;
}

.form-control,
.form-select{
    padding:12px;
    border-radius:12px;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero{
    background:radial-gradient(circle at top left,rgba(255,255,255,.18),transparent 34%),linear-gradient(135deg,#15231a,#1f5a38 55%,#6a6f6b);
}

.contact-hero h1{
    font-size:clamp(2rem,4vw,3.5rem);
    max-width:820px;
}

.contact-hero p{
    font-size:1.1rem;
    max-width:760px;
    color:#edf5ef;
}

.eyebrow-light{
    display:inline-block;
    color:#d9f5df;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:12px;
}

.hero-whatsapp{
    border-radius:999px;
    font-weight:800;
    color:#1f5a38;
}

.contact-section{
    background:linear-gradient(180deg,#f7fbf8,#fff);
}

.contact-panel{
    position:relative;
    overflow:hidden;
    background:linear-gradient(145deg,#15231a,#1f5a38);
    color:#fff;
    border-radius:26px;
    padding:32px;
    box-shadow:0 22px 55px rgba(0,0,0,.12);
}

.contact-panel:before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    right:-70px;
    top:-70px;
    background:rgba(255,255,255,.12);
}

.contact-panel:after{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    left:-70px;
    bottom:-70px;
    background:rgba(255,255,255,.08);
}

.contact-panel > *{
    position:relative;
    z-index:1;
}

.contact-panel-logo{
    background:#fff;
    border-radius:18px;
    padding:10px;
    max-width:145px;
    margin-bottom:24px;
}

.contact-panel h2{
    font-weight:800;
    line-height:1.15;
}

.contact-panel p{
    color:#e4eee6;
}

.contact-info-list{
    display:grid;
    gap:14px;
    margin:26px 0;
}

.contact-info-item{
    display:flex;
    gap:14px;
    align-items:center;
    padding:15px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.1);
    border-radius:18px;
    text-decoration:none;
    color:#fff;
    transition:.2s;
}

.contact-info-item:hover{
    background:rgba(255,255,255,.18);
    color:#fff;
    transform:translateY(-2px);
}

.contact-info-item span{
    width:42px;
    height:42px;
    border-radius:14px;
    background:#fff;
    color:#1f5a38;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex:0 0 42px;
}

.contact-info-item b,
.contact-info-item small{
    display:block;
}

.contact-info-item small{
    color:#e8f1ea;
    word-break:break-word;
}

.location-box{
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.18);
    border-radius:20px;
    padding:20px;
    margin-top:20px;
}

.location-box h5{
    font-weight:800;
    margin-bottom:16px;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.location-grid div{
    background:rgba(255,255,255,.12);
    border-radius:14px;
    padding:13px;
}

.location-grid b,
.location-grid small{
    display:block;
}

.location-grid small{
    color:#dbe9de;
}

.contact-promise{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:18px;
}

.contact-promise div{
    background:#fff;
    color:#1f5a38;
    border-radius:16px;
    padding:16px;
}

.contact-promise strong,
.contact-promise span{
    display:block;
}

.contact-promise span{
    color:#47554b;
    font-size:.9rem;
}

.contact-form-card{
    border-radius:26px;
}

.form-head{
    margin-bottom:24px;
}

.form-head h2{
    font-weight:800;
    margin:6px 0;
}

.contact-form-card .form-control,
.contact-form-card .form-select{
    border-radius:14px;
    border-color:#dfe6e1;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus{
    border-color:#1f5a38;
    box-shadow:0 0 0 .2rem rgba(31,90,56,.15);
}

/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9999;
    display:flex;
    align-items:center;
    gap:8px;
    background:#25d366;
    color:#fff;
    padding:13px 18px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 12px 35px rgba(0,0,0,.22);
}

.floating-whatsapp:hover{
    color:#fff;
    transform:translateY(-2px);
}

.floating-whatsapp i{
    font-size:20px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#0d1117;
    color:#d7dde3;
    position:relative;
}

.footer:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:linear-gradient(90deg,#1f5a38,#4ade80,#1f5a38);
}

.footer-logo{
    max-width:170px;
    background:#fff;
    border-radius:14px;
    padding:10px;
}

.footer h6{
    color:#fff;
    font-size:17px;
    margin-bottom:18px;
    font-weight:800;
}

.footer p{
    color:#b9c1c8;
    line-height:1.7;
}

.footer a{
    color:#cfd7dd;
    text-decoration:none;
    margin-bottom:10px;
    display:inline-block;
    transition:.2s;
}

.footer a:hover{
    color:#4ade80;
    transform:translateX(3px);
}

.footer hr{
    border-color:rgba(255,255,255,.08);
    margin:30px 0 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){
    .navbar{
        padding:10px 0;
    }

    .logo{
        height:52px;
    }

    .navbar-collapse{
        background:#fff;
        padding:18px;
        border-radius:18px;
        margin-top:12px;
        box-shadow:0 18px 45px rgba(0,0,0,.08);
    }

    .navbar .nav-link{
        padding:12px 0 !important;
    }

    .btn-brand{
        width:100%;
        margin-top:10px;
    }

    .hero{
        padding:65px 0;
    }

    .hero-slide{
        padding:65px 0 85px;
    }

    .section{
        padding:55px 0;
    }

    .footer{
        text-align:center;
    }
}

@media(max-width:767px){
    .hero-slide{
        padding:60px 0 80px;
    }

    .hero-dots{
        bottom:20px;
    }

    .contact-panel,
    .contact-form-card{
        padding:24px;
    }

    .location-grid,
    .contact-promise{
        grid-template-columns:1fr;
    }

    .contact-panel-logo{
        max-width:125px;
    }

    .floating-whatsapp span{
        display:none;
    }

    .floating-whatsapp{
        width:54px;
        height:54px;
        justify-content:center;
        padding:0;
    }
}