/*==============================
GLOBAL CSS
==============================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
color:#222;
background:#fff;
line-height:1.7;

}

.container{

width:90%;
max-width:1250px;
margin:auto;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
transition:.3s;

}

ul{

list-style:none;

}

/*==============================
HEADER
==============================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:999;

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

}

.logo h2{

font-size:28px;
font-weight:700;
color:#0A6E31;

}

.logo p{

font-size:13px;
color:#777;

}

nav ul{

display:flex;
gap:30px;

}

nav a{

font-weight:600;
color:#333;

}

nav a:hover{

color:#0A6E31;

}

.btn{

background:#0A6E31;
color:#fff;
padding:13px 26px;
border-radius:50px;
font-weight:600;

}

.btn:hover{

background:#f5a000;

}

/*==============================
HERO
==============================*/

.hero{

padding:170px 0 100px;
background:#f8fbf6;

}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.badge{

display:inline-block;
background:#e9f7ef;
padding:10px 18px;
border-radius:40px;
font-weight:600;
color:#0A6E31;
margin-bottom:20px;

}

.hero h1{

font-size:52px;
font-weight:800;
line-height:1.2;
margin-bottom:25px;

}

.hero p{

font-size:18px;
margin-bottom:35px;

}

.primary-btn{

background:#0A6E31;
padding:16px 32px;
color:#fff;
border-radius:8px;
display:inline-block;
margin-right:15px;
font-weight:600;

}

.secondary-btn{

background:#fff;
padding:16px 32px;
border:2px solid #0A6E31;
color:#0A6E31;
border-radius:8px;
display:inline-block;

}

.primary-btn:hover{

background:#f5a000;

}

.secondary-btn:hover{

background:#0A6E31;
color:#fff;

}

.hero-features{

display:flex;
gap:40px;
margin-top:60px;

}

.hero-features h3{

font-size:40px;
color:#0A6E31;

}

/*==============================
SECTION
==============================*/

.section{

padding:90px 0;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title h2{

font-size:42px;
margin-bottom:15px;

}

.section-title p{

max-width:850px;
margin:auto;
color:#666;

}

/*==============================
CARDS
==============================*/

.cards,
.service-grid,
.benefit-grid,
.cost-grid,
.process-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.card,
.service-box,
.benefit-box,
.cost-card,
.step{

background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.35s;

}

.card:hover,
.service-box:hover,
.benefit-box:hover,
.cost-card:hover,
.step:hover{

transform:translateY(-8px);

}

/*==============================
ABOUT
==============================*/

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

/*==============================
CONTACT
==============================*/

.contact-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

width:100%;
padding:18px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;

}

.contact-form button{

width:100%;
padding:18px;
border:none;
background:#0A6E31;
color:#fff;
font-size:18px;
font-weight:600;
cursor:pointer;
border-radius:8px;

}

.contact-form button:hover{

background:#f5a000;

}

/*==============================
FAQ
==============================*/

.faq-item{

background:#fff;
padding:25px;
margin-bottom:20px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.faq-item h3{

margin-bottom:15px;
color:#0A6E31;

}

/*==============================
CTA
==============================*/

.cta,
.final-cta{

background:#0A6E31;
padding:90px 0;
text-align:center;
color:#fff;

}

.cta h2,
.final-cta h2{

font-size:42px;
margin-bottom:20px;

}

/*==============================
FOOTER
==============================*/

footer{

background:#111;
padding:80px 0 25px;
color:#ccc;

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;

}

footer h3{

color:#fff;
margin-bottom:20px;

}

footer a{

color:#ccc;

}

footer a:hover{

color:#fff;

}

.copyright{

margin-top:60px;
text-align:center;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.08);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.hero-grid,
.about-grid,
.contact-grid,
.cards,
.service-grid,
.benefit-grid,
.cost-grid,
.process-grid,
.footer-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:34px;

}

.hero-features{

flex-direction:column;
gap:20px;

}

}