*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f8fafc;
color:#1e293b;
line-height:1.7;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* =========================
NAVBAR
========================= */

.navbar{
background:#ffffff;
padding:18px 0;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 12px rgba(0,0,0,0.05);
}

.navbar-wrap{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.logo{
font-size:28px;
font-weight:700;
color:#065f46;
}

.nav-menu{
display:flex;
gap:30px;
}

.nav-menu a{
color:#334155;
font-weight:500;
transition:0.3s;
}

.nav-menu a:hover{
color:#065f46;
}

.btn-wa{
background:#065f46;
color:#fff;
padding:12px 22px;
border-radius:10px;
font-weight:600;
transition:0.3s;
}

.btn-wa:hover{
background:#064e3b;
}

/* =========================
HERO
========================= */

.hero{
padding:100px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-block;
padding:8px 16px;
background:#d1fae5;
color:#065f46;
border-radius:999px;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

.hero h1{
font-size:58px;
line-height:1.2;
margin-bottom:24px;
color:#064e3b;
}

.hero-desc{
font-size:18px;
margin-bottom:35px;
color:#475569;
}

.hero-info{
display:flex;
gap:20px;
margin-bottom:35px;
flex-wrap:wrap;
}

.info-box{
background:#fff;
padding:20px;
border-radius:16px;
text-align:center;
min-width:120px;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.info-box h3{
font-size:28px;
color:#065f46;
margin-bottom:5px;
}

.info-box p{
font-size:14px;
color:#64748b;
}

.hero-btns{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
display:inline-block;
padding:15px 28px;
background:#065f46;
color:#fff;
border-radius:12px;
font-weight:600;
transition:0.3s;
}

.btn-primary:hover{
background:#064e3b;
}

.btn-secondary{
display:inline-block;
padding:15px 28px;
border:2px solid #065f46;
color:#065f46;
border-radius:12px;
font-weight:600;
transition:0.3s;
}

.btn-secondary:hover{
background:#065f46;
color:#fff;
}

.hero-img{
border-radius:24px;
box-shadow:0 10px 35px rgba(0,0,0,0.1);
}

/* =========================
SECTION
========================= */

.section-title{
text-align:center;
font-size:42px;
margin-bottom:20px;
color:#064e3b;
}

.section-desc{
max-width:800px;
margin:auto;
text-align:center;
margin-bottom:50px;
color:#64748b;
}

/* =========================
EXPERIENCE
========================= */

.experience{
padding:90px 0;
background:#ffffff;
}

.experience-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.exp-card{
background:#f1f5f9;
padding:24px;
border-radius:16px;
text-align:center;
font-weight:600;
transition:0.3s;
}

.exp-card:hover{
transform:translateY(-5px);
background:#d1fae5;
}

/* =========================
SERVICES
========================= */

.services{
padding:90px 0;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-icon{
font-size:42px;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
font-size:24px;
color:#064e3b;
}

.service-card p{
color:#64748b;
}

/* =========================
PRICING
========================= */

.pricing{
padding:90px 0;
background:#ffffff;
}

.pricing-box{
max-width:700px;
margin:auto;
background:#065f46;
padding:50px;
border-radius:24px;
color:#fff;
text-align:center;
}

.pricing-box h3{
font-size:54px;
margin-bottom:20px;
}

.pricing-box p{
font-size:17px;
line-height:1.8;
}

/* =========================
COVERAGE
========================= */

.coverage{
padding:90px 0;
}

.coverage-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.coverage-item{
background:#fff;
padding:25px;
border-radius:16px;
text-align:center;
font-weight:600;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

/* =========================
FOOTER
========================= */

.footer{
background:#052e2b;
color:#fff;
padding:70px 0 30px;
margin-top:80px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer h3{
margin-bottom:20px;
}

.footer p,
.footer li,
.footer a{
color:#cbd5e1;
}

.footer ul{
list-style:none;
}

.footer li{
margin-bottom:10px;
}

.footer a:hover{
color:#fff;
}

.copyright{
text-align:center;
margin-top:50px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,0.1);
opacity:0.7;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

.hero-grid,
.service-grid,
.footer-grid,
.experience-grid,
.coverage-grid,
.testimonial-grid{
grid-template-columns:1fr 1fr;
}

.hero h1{
font-size:44px;
}

}

@media(max-width:768px){

.navbar-wrap{
flex-direction:column;
}

.nav-menu{
flex-wrap:wrap;
justify-content:center;
}

.hero{
padding:70px 0;
}

.hero-grid,
.service-grid,
.footer-grid,
.experience-grid,
.coverage-grid,
.contact-grid,
.testimonial-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:38px;
}

.section-title{
font-size:32px;
}

.page-header h1{
font-size:36px;
}

.pricing-box{
padding:35px;
}

.pricing-box h3{
font-size:42px;
}

.artikel-single img{
height:260px;
}

.artikel-content-full{
padding:25px;
}

.artikel-content-full h2{
font-size:30px;
}

}

/* =========================
CONTACT
========================= */

.contact-section{
padding:80px 0;
}

.contact-box{
max-width:700px;
margin:0 auto 30px;
background:#fff;
padding:50px;
border-radius:24px;
text-align:center;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.contact-box h3{
font-size:36px;
margin-bottom:20px;
color:#064e3b;
}

.contact-box p{
margin-bottom:18px;
font-size:18px;
color:#64748b;
}

.map-box{
max-width:900px;
margin:auto;
border-radius:24px;
overflow:hidden;
height:450px;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.map-box iframe{
width:100%;
height:100%;
border:0;
}

/* =========================
TESTIMONIAL
========================= */

.testimonial-section{
padding:90px 0;
background:#ffffff;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
align-items:start;
}

/* =========================
ARTIKEL FULL
========================= */

.artikel-single{
max-width:900px;
margin:auto;
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.artikel-single img{
width:100%;
height:420px;
object-fit:cover;
}

.artikel-content-full{
padding:40px;
}

.artikel-content-full h2{
font-size:38px;
margin-bottom:25px;
color:#064e3b;
}

.artikel-content-full p{
margin-bottom:22px;
color:#475569;
line-height:1.9;
}

@media(max-width:768px){

.contact-grid,
.testimonial-grid{
grid-template-columns:1fr;
}

.artikel-single img{
height:260px;
}

.artikel-content-full{
padding:25px;
}

.artikel-content-full h2{
font-size:30px;
}

}
