*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f4f4;
color:#222;
overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:rgba(34,51,38,0.95);
backdrop-filter:blur(8px);
position:fixed;
top:0;
width:100%;
z-index:1000;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* ================= LOGO ================= */

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:70px;
height:auto;
display:block;
object-fit:contain;
}

.logo h2{
color:white;
font-size:26px;
font-weight:bold;
letter-spacing:2px;
}

/* ================= NAVIGATION ================= */

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:white;
font-weight:bold;
transition:0.3s;
}

nav a:hover{
color:orange;
}

.quote-btn{
background:orange;
padding:12px 25px;
border-radius:10px;
text-decoration:none;
color:white;
font-weight:bold;
}

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

.hero{
height:100vh;
background:url('../images/hero.jfif');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
position:relative;
padding-top:80px;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
padding:20px;
}

.hero-content h1{
font-size:70px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content p{
font-size:22px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.primary-btn,
.secondary-btn,
.main-btn{
padding:15px 35px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.primary-btn,
.main-btn{
background:orange;
color:white;
}

.secondary-btn{
border:2px solid white;
color:white;
}

.primary-btn:hover,
.main-btn:hover{
transform:translateY(-3px);
}

.secondary-btn:hover{
background:white;
color:#223326;
}

/* ================= ABOUT ================= */

.about{
display:grid;
grid-template-columns:1fr 1fr;
padding:100px 8%;
gap:50px;
align-items:center;
background:white;
}

.about-text h2{
font-size:40px;
margin-bottom:20px;
color:#223326;
}

.about-text p{
margin-bottom:20px;
line-height:1.7;
}

.about-text ul{
margin-bottom:20px;
padding-left:20px;
}

.about-text li{
margin-bottom:10px;
}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

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

.services{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.services h2{
font-size:40px;
margin-bottom:50px;
color:#223326;
}

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

.service-card{
background:white;
padding:40px;
border-radius:20px;
transition:0.4s;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

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

.service-card i{
font-size:50px;
color:orange;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
}

/* ================= STATS ================= */

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
background:#223326;
padding:70px;
text-align:center;
color:white;
}

.stat-box h1{
font-size:55px;
color:orange;
margin-bottom:10px;
}

/* ================= WHY US ================= */

.why-us{
padding:100px 8%;
background:white;
text-align:center;
}

.why-us h2{
font-size:40px;
margin-bottom:50px;
}

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

.why-card{
background:#f7f7f7;
padding:40px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.why-card:hover{
transform:translateY(-10px);
}

.why-card i{
font-size:45px;
color:orange;
margin-bottom:20px;
}

/* ================= TESTIMONIALS ================= */

.testimonials{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.testimonials h2{
font-size:40px;
margin-bottom:50px;
}

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

.testimonial-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

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

.contact-section{
padding:100px 8%;
background:white;
}

.contact-section h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,
textarea{
padding:18px;
border-radius:10px;
border:1px solid #ccc;
font-size:16px;
}

textarea{
height:180px;
resize:none;
}

button{
padding:16px;
border:none;
background:orange;
color:white;
font-size:18px;
border-radius:10px;
cursor:pointer;
}

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

footer{
background:#223326;
color:white;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding:60px 8%;
}

footer a{
display:block;
margin-top:10px;
text-decoration:none;
color:white;
}

.socials{
display:flex;
gap:20px;
font-size:25px;
margin-top:20px;
}

/* ================= WHATSAPP ================= */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:65px;
height:65px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:32px;
color:white;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

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

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

@media(max-width:900px){

header{
display:flex;
flex-direction:row;
justify-content:space-between;
align-items:center;
padding:14px 5%;

background:rgba(34,51,38,0.95);
backdrop-filter:blur(8px);

}

.logo img{
width:55px;
}

.logo h2{
display:none;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

nav a{
font-size:15px;
}

.quote-btn{
padding:10px 18px;
font-size:14px;
border-radius:8px;
}

.hero{
padding-top:110px;
}

.hero-content h1{
font-size:45px;
line-height:1.2;
}

.hero-content p{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.about,
.service-grid,
.stats,
.why-grid,
.testimonial-grid,
footer{
grid-template-columns:1fr;
}

.about{
padding-top:120px;
}

}


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

.blog-hero{
height:60vh;
background:
linear-gradient(rgba(0,0,0,0.65),
rgba(0,0,0,0.65)),
url('../images/blog-hero.jfif');

background-size:cover;
background-position:center;

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

position:relative;
padding-top:80px;
}

.blog-hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
padding:20px;
}

.blog-hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.blog-hero-content p{
font-size:22px;
max-width:800px;
}

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

.blog-section{
padding:100px 8%;
background:#f5f5f5;
}

.blog-section h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
color:#223326;
}

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

.blog-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
}

.blog-card:hover{
transform:translateY(-10px);
}

.blog-card img{
width:100%;
height:250px;
object-fit:cover;
}

.blog-content{
padding:30px;
}

.blog-date{
color:orange;
font-weight:bold;
margin-bottom:15px;
}

.blog-content h3{
margin-bottom:15px;
font-size:24px;
color:#223326;
}

.blog-content p{
line-height:1.7;
margin-bottom:20px;
}

.read-more{
display:inline-block;
padding:12px 25px;
background:#223326;
color:white;
text-decoration:none;
border-radius:10px;
transition:0.3s;
}

.read-more:hover{
background:orange;
}

/* ================= NEWSLETTER ================= */

.newsletter{
padding:100px 8%;
background:#223326;
color:white;
text-align:center;
}

.newsletter h2{
font-size:42px;
margin-bottom:20px;
}

.newsletter p{
margin-bottom:40px;
font-size:18px;
}

.newsletter-form{
max-width:700px;
margin:auto;
display:flex;
gap:20px;
}

.newsletter-form input{
flex:1;
padding:18px;
border:none;
border-radius:10px;
font-size:16px;
}

.newsletter-form button{
padding:18px 35px;
border:none;
border-radius:10px;
background:orange;
color:white;
font-size:16px;
cursor:pointer;
}

/* ================= ACTIVE NAV ================= */

nav a.active{
color:orange;
}

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

@media(max-width:900px){

.blog-grid{
grid-template-columns:1fr;
}

.blog-hero-content h1{
font-size:40px;
}

.newsletter-form{
flex-direction:column;
}

}

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

.about-hero{
height:60vh;

background:
linear-gradient(rgba(0,0,0,0.65),
rgba(0,0,0,0.65)),
url('../images/about-hero.jfif');

background-size:cover;
background-position:center;

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

position:relative;
padding-top:80px;
}

.about-hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
padding:20px;
}

.about-hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.about-hero-content p{
font-size:22px;
max-width:800px;
}

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

.company-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:100px 8%;
background:white;
align-items:center;
}

.company-image img{
width:100%;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.company-text h2{
font-size:42px;
margin-bottom:20px;
color:#223326;
}

.company-text p{
line-height:1.8;
margin-bottom:20px;
}

/* ================= MISSION & VISION ================= */

.mission-vision{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
padding:100px 8%;
background:#eef5ef;
}

.mission-card{
background:white;
padding:50px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
}

.mission-card:hover{
transform:translateY(-10px);
}

.mission-card i{
font-size:55px;
color:orange;
margin-bottom:20px;
}

.mission-card h2{
margin-bottom:20px;
}

/* ================= VALUES ================= */

.values-section{
padding:100px 8%;
background:white;
text-align:center;
}

.values-section h2{
font-size:42px;
margin-bottom:60px;
}

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

.value-card{
background:#f7f7f7;
padding:40px;
border-radius:20px;
transition:0.4s;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.value-card:hover{
transform:translateY(-10px);
}

.value-card i{
font-size:45px;
color:orange;
margin-bottom:20px;
}

.value-card h3{
margin-bottom:15px;
}

/* ================= WHY ABOUT ================= */

.why-about{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.why-about h2{
font-size:42px;
margin-bottom:60px;
}

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

.why-about-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
}

.why-about-card:hover{
transform:translateY(-10px);
}

.why-about-card i{
font-size:45px;
color:orange;
margin-bottom:20px;
}

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

.team-section{
padding:100px 8%;
background:white;
text-align:center;
}

.team-section h2{
font-size:42px;
margin-bottom:20px;
}

.team-section p{
margin-bottom:50px;
}

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

.team-card{
background:#f7f7f7;
padding:30px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.team-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:100%;
height:300px;
object-fit:cover;
border-radius:15px;
margin-bottom:20px;
}

.team-card h3{
margin-bottom:10px;
}

/* ================= ABOUT CTA ================= */

.about-cta{
padding:100px 8%;
background:#223326;
text-align:center;
color:white;
}

.about-cta h2{
font-size:48px;
margin-bottom:20px;
}

.about-cta p{
font-size:20px;
margin-bottom:40px;
}

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

@media(max-width:900px){

.company-section,
.mission-vision,
.values-grid,
.why-about-grid,
.team-grid{
grid-template-columns:1fr;
}

.about-hero-content h1{
font-size:42px;
}

.about-cta h2{
font-size:36px;
}

}


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

.contact-hero{
height:60vh;

background:
linear-gradient(rgba(0,0,0,0.65),
rgba(0,0,0,0.65)),
url('../images/contact-hero.jfif');

background-size:cover;
background-position:center;

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

position:relative;
padding-top:80px;
}

.contact-hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
padding:20px;
}

.contact-hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.contact-hero-content p{
font-size:22px;
}

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

.contact-info-section{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding:100px 8%;
background:#eef5ef;
}

.contact-info-card{
background:white;
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
}

.contact-info-card:hover{
transform:translateY(-10px);
}

.contact-info-card i{
font-size:50px;
color:orange;
margin-bottom:20px;
}

.contact-info-card h3{
margin-bottom:15px;
}

/* ================= LOCATION LINK ================= */

.contact-info-card a{
text-decoration:none;
color:#222;
font-weight:bold;
transition:0.3s;
}

.contact-info-card a:hover{
color:orange;
}

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

.contact-main-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:100px 8%;
background:white;
align-items:center;
}

.contact-form-container h2{
font-size:42px;
margin-bottom:30px;
color:#223326;
}

.contact-image img{
width:100%;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* ================= MAP ================= */

.map-section{
padding:100px 8%;
background:#f5f5f5;
text-align:center;
}

.map-section h2{
font-size:42px;
margin-bottom:40px;
}

.map-container{
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* ================= FAQ ================= */

.faq-section{
padding:100px 8%;
background:white;
text-align:center;
}

.faq-section h2{
font-size:42px;
margin-bottom:60px;
}

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

.faq-card{
background:#f7f7f7;
padding:40px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.faq-card:hover{
transform:translateY(-10px);
}

.faq-card h3{
margin-bottom:20px;
color:#223326;
}

/* ================= CTA ================= */

.contact-cta{
padding:100px 8%;
background:#223326;
text-align:center;
color:white;
}

.contact-cta h2{
font-size:48px;
margin-bottom:20px;
}

.contact-cta p{
font-size:20px;
margin-bottom:40px;
}

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

@media(max-width:900px){

.contact-info-section,
.contact-main-section,
.faq-grid{
grid-template-columns:1fr;
}

.contact-hero-content h1{
font-size:42px;
}

.contact-cta h2{
font-size:36px;
}

}


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

.services-hero{
height:60vh;

background:
linear-gradient(rgba(0,0,0,0.65),
rgba(0,0,0,0.65)),
url('../images/services-hero.jfif');

background-size:cover;
background-position:center;

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

position:relative;
padding-top:80px;
}

.services-hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
padding:20px;
}

.services-hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.services-hero-content p{
font-size:22px;
}

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

.main-services{
padding:100px 8%;
background:#f5f5f5;
text-align:center;
}

.main-services h2{
font-size:42px;
margin-bottom:60px;
color:#223326;
}

.main-services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.main-service-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
}

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

.main-service-card img{
width:100%;
height:250px;
object-fit:cover;
}

.service-content{
padding:35px;
}

.service-content i{
font-size:45px;
color:orange;
margin-bottom:20px;
}

.service-content h3{
font-size:26px;
margin-bottom:15px;
color:#223326;
}

.service-content p{
line-height:1.7;
}

/* ================= PROCESS ================= */

.process-section{
padding:100px 8%;
background:white;
text-align:center;
}

.process-section h2{
font-size:42px;
margin-bottom:60px;
}

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

.process-card{
background:#f7f7f7;
padding:40px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.process-card:hover{
transform:translateY(-10px);
}

.process-number{
width:70px;
height:70px;
background:orange;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
font-weight:bold;
margin:auto;
margin-bottom:25px;
}

/* ================= FEATURES ================= */

.features-section{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.features-section h2{
font-size:42px;
margin-bottom:60px;
}

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

.feature-box{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.feature-box:hover{
transform:translateY(-10px);
}

.feature-box i{
font-size:45px;
color:orange;
margin-bottom:20px;
}

.feature-box h3{
margin-bottom:15px;
}

/* ================= CTA ================= */

.services-cta{
padding:100px 8%;
background:#223326;
text-align:center;
color:white;
}

.services-cta h2{
font-size:48px;
margin-bottom:20px;
}

.services-cta p{
font-size:20px;
margin-bottom:40px;
}

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

@media(max-width:900px){

.main-services-grid,
.process-grid,
.features-grid{
grid-template-columns:1fr;
}

.services-hero-content h1{
font-size:42px;
}

.services-cta h2{
font-size:36px;
}

}

.explore-hero{
height:60vh;
background:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url('../images/explore-hero.jfif');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding-top:80px;
}

.explore-hero h1{
font-size:60px;
}

.explore-hero p{
font-size:20px;
margin-top:10px;
}

/* FILTER BUTTONS */
.filter-section{
text-align:center;
padding:40px;
background:#fff;
}

.filter-section button{
margin:5px;
padding:10px 20px;
border:none;
background:#223326;
color:white;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.filter-section button:hover{
background:orange;
}

/* GRID */
.explore-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
gap:30px;
padding:80px 8%;
background:#eef5ef;
}

/* CARD */
.card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
border-top:4px solid orange;
text-align:center;
transition:0.4s;
animation:fadeIn 0.5s ease-in;
}

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

.card h3{
color:#223326;
margin-bottom:10px;
}

.card p{
line-height:1.6;
margin-bottom:15px;
}

.card a{
display:inline-block;
padding:10px 20px;
background:orange;
color:white;
text-decoration:none;
border-radius:8px;
}

.card a:hover{
background:#223326;
}

/* ANIMATION */
@keyframes fadeIn{
from{opacity:0; transform:translateY(20px);}
to{opacity:1; transform:translateY(0);}
}
.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:15px;
margin-bottom:15px;
}

/* MODAL */
.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:2000;
}

.modal-content{
background:white;
padding:40px;
width:80%;
max-width:700px;
border-radius:20px;
animation:pop 0.3s ease;
}

.close{
float:right;
font-size:30px;
cursor:pointer;
}

@keyframes pop{
from{transform:scale(0.8); opacity:0;}
to{transform:scale(1); opacity:1;}
}

.modal-content h2{
color:#223326;
margin-bottom:15px;
}

.modal-content ol{
padding-left:20px;
line-height:1.8;
}

.socials{
display:flex;
gap:18px;
margin-top:20px;
}

.socials a{
width:45px;
height:45px;
background:white;
color:#223326;

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

border-radius:50%;
text-decoration:none;

font-size:20px;
transition:0.3s;
}

.socials a:hover{
background:orange;
color:white;
transform:translateY(-5px);
}

/* ================= NEWS / BLOG PAGE ================= */

.news-page{
padding:160px 8% 100px;
background:white;
}

.news-container{
display:grid;
grid-template-columns:2.5fr 1fr;
gap:60px;
max-width:1400px;
margin:auto;
}

.news-feature,
.news-row{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:50px;
align-items:center;
margin-bottom:80px;
}

.news-row{
grid-template-columns:1fr 1fr;
}

.news-date{
text-transform:uppercase;
letter-spacing:3px;
font-size:14px;
color:#8a8a8a;
font-weight:bold;
margin-bottom:20px;
}

.news-text h1{
font-size:36px;
line-height:1.2;
color:#1c2633;
margin-bottom:25px;
font-weight:900;
}

.news-text h2{
font-size:32px;
line-height:1.2;
color:#1c2633;
margin-bottom:20px;
font-weight:900;
}

.news-text p{
font-size:17px;
line-height:1.8;
color:#333;
margin-bottom:25px;
}

.news-image img{
width:100%;
height:360px;
object-fit:cover;
}

.read-btn{
display:inline-block;
background:#222;
color:white;
padding:18px 35px;
font-weight:bold;
letter-spacing:1px;
transition:0.3s;
}

.read-btn:hover{
background:orange;
}

.news-sidebar{
border-left:1px solid #ddd;
padding-left:35px;
}

.news-sidebar h3{
font-size:24px;
margin-bottom:20px;
color:#223326;
}

.news-sidebar a{
display:block;
color:#333;
margin-bottom:18px;
font-size:16px;
transition:0.3s;
}

.news-sidebar a:hover{
color:orange;
padding-left:5px;
}

nav a.active{
color:orange;
}

/* ================= LOCATION DROPDOWN ================= */

.location-selector{
max-width:500px;
margin:0 auto 30px;
text-align:left;
}

.location-selector label{
display:block;
font-weight:bold;
margin-bottom:10px;
color:#223326;
font-size:18px;
}

.location-selector select{
width:100%;
padding:16px;
border-radius:10px;
border:1px solid #ccc;
font-size:17px;
outline:none;
}

.map-address-box{
max-width:700px;
margin:0 auto 35px;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
text-align:center;
}

.map-address-box h3{
font-size:28px;
color:#223326;
margin-bottom:10px;
}

.map-address-box p{
font-size:17px;
color:#555;
margin-bottom:20px;
}

.direction-btn{
display:inline-block;
background:orange;
color:white;
padding:14px 28px;
border-radius:10px;
font-weight:bold;
transition:0.3s;
}

.direction-btn:hover{
background:#ff9500;
transform:translateY(-3px);
}

.contact-info-card a{
text-decoration:none;
color:#222;
font-weight:bold;
}

.contact-info-card a:hover{
color:orange;
}

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

.dropdown{
position:relative;
display:inline-block;
z-index:99999;
}

.dropbtn{
display:flex;
align-items:center;
gap:8px;
cursor:pointer;
}

.dropdown-content{
display:none;

position:absolute;
top:100%;
left:0;

min-width:320px;

background:#fff;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,0.15);

overflow:hidden;

z-index:99999;
}

.dropdown-content a{
display:block;

padding:15px 20px;

color:#223326 !important;

font-size:15px;

font-weight:600;

background:white;

transition:0.3s;
}

.dropdown-content a:hover{
background:#eef5ef;
color:orange !important;
padding-left:25px;
}

.dropdown:hover .dropdown-content{
display:block;
}

/* ================= WASTE MANAGEMENT PAGE ================= */

.waste-hero{
height:80vh;
background:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url('../images/waste-hero.jfif');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 8%;
position:relative;
}

.waste-hero-content{
position:relative;
z-index:2;
color:white;
max-width:900px;
}

.waste-hero-content h1{
font-size:68px;
font-weight:800;
margin-bottom:25px;
}

.waste-hero-content p{
font-size:22px;
line-height:1.7;
margin-bottom:35px;
}

.waste-intro{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:100px 8%;
align-items:center;
background:white;
}

.waste-intro-text h2{
font-size:48px;
color:#223326;
margin-bottom:25px;
}

.waste-intro-text p{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.waste-intro-image img{
width:100%;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.waste-services{
padding:100px 8%;
background:#eef5ef;
}

.waste-services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.waste-card{
background:white;
padding:45px 35px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.waste-card:hover{
transform:translateY(-10px);
}

.waste-card i{
font-size:55px;
color:orange;
margin-bottom:25px;
}

.waste-card h3{
font-size:26px;
color:#223326;
margin-bottom:18px;
}

.waste-card p{
font-size:17px;
line-height:1.7;
color:#666;
}

.waste-process{
padding:100px 8%;
background:white;
text-align:center;
}

.waste-process h2{
font-size:46px;
color:#223326;
margin-bottom:60px;
}

.waste-cta{
padding:100px 8%;
background:#223326;
color:white;
text-align:center;
}

.waste-cta h2{
font-size:52px;
margin-bottom:20px;
}

.waste-cta p{
font-size:20px;
margin-bottom:35px;
}

/* dropdown fix */

.dropdown{
position:relative;
list-style:none;
z-index:99999;
}

.dropdown-toggle{
display:flex;
align-items:center;
gap:8px;
cursor:pointer;
color:white;
}

.dropdown-menu{
display:none;
position:absolute;
top:100%;
left:0;
min-width:340px;
background:white;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
overflow:hidden;
z-index:99999;
}

.dropdown-menu.show{
display:block;
}

.dropdown-menu li{
list-style:none;
}

.dropdown-menu a{
display:block;
padding:16px 20px;
color:#223326 !important;
font-weight:600;
border-bottom:1px solid #eee;
background:white;
}

.dropdown-menu a:hover{
background:#eef5ef;
color:orange !important;
}

/* ================= ENVIRONMENTAL COMPLIANCE PAGE ================= */

.compliance-hero{
height:80vh;
background:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url('../images/compliance-hero.jfif');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 8%;
position:relative;
}

.compliance-hero-content{
position:relative;
z-index:2;
max-width:1000px;
color:white;
}

.compliance-hero-content h1{
font-size:64px;
font-weight:800;
margin-bottom:25px;
line-height:1.2;
}

.compliance-hero-content p{
font-size:22px;
line-height:1.7;
margin-bottom:35px;
}

.compliance-intro{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:100px 8%;
align-items:center;
background:white;
}

.compliance-text h2{
font-size:48px;
color:#223326;
margin-bottom:25px;
}

.compliance-text p{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.compliance-image img{
width:100%;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.compliance-services{
padding:100px 8%;
background:#eef5ef;
}

.compliance-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
max-width:1200px;
margin:60px auto 0;
}
.compliance-card{
background:white;
padding:45px 35px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.compliance-card:hover{
transform:translateY(-10px);
}

.compliance-card i{
font-size:52px;
color:orange;
margin-bottom:25px;
}

.compliance-card h3{
font-size:25px;
color:#223326;
margin-bottom:18px;
}

.compliance-card p{
font-size:17px;
line-height:1.7;
color:#666;
}

.compliance-management{
padding:100px 8%;
background:white;
text-align:center;
}

.compliance-management h2{
font-size:46px;
color:#223326;
margin-bottom:60px;
}

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

.management-box{
background:#f7f7f7;
padding:35px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.management-box:hover{
transform:translateY(-10px);
}

.management-box h3{
font-size:23px;
color:#223326;
margin-bottom:15px;
}

.management-box p{
font-size:16px;
line-height:1.7;
color:#666;
}

.compliance-benefits{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.compliance-benefits h2{
font-size:46px;
color:#223326;
margin-bottom:50px;
}

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

.benefit{
background:#223326;
color:white;
padding:25px;
border-radius:15px;
font-weight:bold;
font-size:18px;
}

.compliance-cta{
padding:100px 8%;
background:#223326;
color:white;
text-align:center;
}

.compliance-cta h2{
font-size:52px;
margin-bottom:20px;
}

.compliance-cta p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
}

/* ================= SAFETY MANAGEMENT PAGE ================= */

.safety-hero{
height:80vh;
background:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url('../images/safety-hero.jfif');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 8%;
position:relative;
}

.safety-hero-content{
position:relative;
z-index:2;
max-width:1000px;
color:white;
}

.safety-hero-content h1{
font-size:68px;
font-weight:800;
margin-bottom:25px;
line-height:1.2;
}

.safety-hero-content p{
font-size:22px;
line-height:1.7;
margin-bottom:35px;
}

.safety-intro{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:100px 8%;
align-items:center;
background:white;
}

.safety-text h2{
font-size:48px;
color:#223326;
margin-bottom:25px;
}

.safety-text p{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.safety-image img{
width:100%;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.safety-services{
padding:100px 8%;
background:#eef5ef;
}

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

.safety-services{
padding:100px 8%;
background:#f8faf8;
}

.safety-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
max-width:1200px;
margin:60px auto 0;
}

.safety-card{
background:#fff;
padding:45px 35px;
border-radius:25px;
text-align:center;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:0.4s;
border-top:5px solid transparent;
}

.safety-card:hover{
transform:translateY(-10px);
border-top:5px solid #f7941d;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.safety-card i{
font-size:58px;
color:#f7941d;
margin-bottom:25px;
}

.safety-card h3{
font-size:28px;
color:#223326;
margin-bottom:18px;
font-weight:700;
}

.safety-card p{
font-size:17px;
line-height:1.8;
color:#666;
}

@media(max-width:900px){

.safety-grid{
grid-template-columns:1fr;
}

}

.safety-process{
padding:100px 8%;
background:white;
text-align:center;
}

.safety-process h2{
font-size:46px;
color:#223326;
margin-bottom:60px;
}

.safety-benefits{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.safety-benefits h2{
font-size:46px;
color:#223326;
margin-bottom:50px;
}

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

.benefit{
background:#223326;
color:white;
padding:25px;
border-radius:15px;
font-weight:bold;
font-size:18px;
}

.safety-cta{
padding:100px 8%;
background:#223326;
color:white;
text-align:center;
}

.safety-cta h2{
font-size:52px;
margin-bottom:20px;
}

.safety-cta p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
}

.customer-status{
margin:20px 0;
}

.customer-status label{
font-weight:600;
color:#223326;
}

.radio-group{
display:flex;
gap:30px;
margin-top:12px;
}

.radio-group label{
display:flex;
align-items:center;
gap:8px;
font-weight:500;
}

select{
width:100%;
padding:16px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
outline:none;
background:white;
}

select:focus{
border-color:orange;
}

/* ================= FAQ PAGE ================= */

.faq-hero{
height:65vh;

background:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url('../images/faq-hero.jfif');

background-size:cover;
background-position:center;

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

text-align:center;
padding:0 8%;
position:relative;
}

.faq-hero-content{
position:relative;
z-index:2;
max-width:950px;
color:white;
}

.faq-hero-content h1{
font-size:64px;
font-weight:800;
margin-bottom:20px;
}

.faq-hero-content p{
font-size:22px;
line-height:1.7;
margin-bottom:35px;
}

.faq-page{
padding:100px 8%;
background:white;
}

.faq-page h2{
font-size:48px;
text-align:center;
color:#223326;
margin-bottom:60px;
}

.faq-list{
max-width:1100px;
margin:auto;
}

.faq-item{
background:#fff;
padding:32px;
margin-bottom:25px;
border-radius:18px;
box-shadow:0 8px 22px rgba(0,0,0,0.08);
border-left:6px solid orange;
transition:0.3s;
}

.faq-item:hover{
transform:translateY(-5px);
box-shadow:0 14px 30px rgba(0,0,0,0.12);
}

.faq-item h3{
color:#223326;
margin-bottom:15px;
font-size:24px;
}

.faq-item p{
font-size:17px;
line-height:1.8;
color:#666;
}

.accepted-waste{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.accepted-waste h2{
font-size:48px;
color:#223326;
margin-bottom:20px;
}

.accepted-intro{
max-width:800px;
margin:0 auto 50px;
font-size:18px;
line-height:1.8;
color:#555;
}

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

.waste-box{
background:white;
padding:25px;
border-radius:15px;
font-weight:600;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.waste-box:hover{
transform:translateY(-5px);
background:#223326;
color:white;
}

.faq-cta{
padding:100px 8%;
background:#223326;
text-align:center;
color:white;
}

.faq-cta h2{
font-size:52px;
margin-bottom:20px;
}

.faq-cta p{
font-size:20px;
margin-bottom:35px;
}

/* ================= FAQ LINK SECTION ================= */

.contact-faq-link{
padding:100px 8%;
background:#eef5ef;
text-align:center;
}

.faq-link-content{
max-width:800px;
margin:auto;
}

.faq-link-content i{
font-size:70px;
color:orange;
margin-bottom:25px;
}

.faq-link-content h2{
font-size:48px;
color:#223326;
margin-bottom:20px;
}

.faq-link-content p{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:35px;
}

/* ================= BLOG CATEGORIES PAGE ================= */

.categories-hero{
height:65vh;
background:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url('../images/categories-hero.jfif');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 8%;
position:relative;
}

.categories-hero-content{
position:relative;
z-index:2;
max-width:950px;
color:white;
}

.categories-hero-content h1{
font-size:64px;
font-weight:800;
margin-bottom:20px;
}

.categories-hero-content p{
font-size:22px;
line-height:1.7;
}

.categories-section{
padding:100px 8%;
background:white;
text-align:center;
}

.categories-section h2{
font-size:48px;
color:#223326;
margin-bottom:60px;
}

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

.category-card{
background:#f7f7f7;
padding:45px 35px;
border-radius:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.category-card:hover{
transform:translateY(-10px);
background:#eef5ef;
}

.category-card i{
font-size:55px;
color:orange;
margin-bottom:25px;
}

.category-card h3{
font-size:26px;
color:#223326;
margin-bottom:18px;
}

.category-card p{
font-size:17px;
line-height:1.7;
color:#666;
margin-bottom:25px;
}

.categories-cta{
padding:100px 8%;
background:#223326;
color:white;
text-align:center;
}

.categories-cta h2{
font-size:52px;
margin-bottom:20px;
}

.categories-cta p{
font-size:20px;
margin-bottom:35px;
}

.category-hero{
height:60vh;
background:
linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
url('../images/categories-hero.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 8%;
}

.category-hero-content{
color:white;
max-width:900px;
}

.category-hero-content h1{
font-size:60px;
margin-bottom:20px;
}

.category-hero-content p{
font-size:22px;
line-height:1.7;
}

.category-articles{
padding:100px 8%;
background:white;
}

.category-articles-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.category-article-card{
background:#f7f7f7;
border-radius:22px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.category-article-card:hover{
transform:translateY(-10px);
}

.category-article-card img{
width:100%;
height:260px;
object-fit:cover;
}

.category-article-content{
padding:30px;
}

.category-article-content h3{
font-size:24px;
color:#223326;
margin-bottom:15px;
}

.category-article-content p{
font-size:16px;
line-height:1.7;
color:#666;
margin-bottom:25px;
}

/* ================= CATEGORY LAYOUT ================= */

.category-layout{

display:grid;

grid-template-columns:300px 1fr;

gap:50px;

padding:100px 8%;

background:white;

}

/* SIDEBAR */

.category-sidebar{

background:#f7f7f7;

padding:30px;

border-radius:20px;

height:fit-content;

position:sticky;

top:120px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

.category-sidebar h3{

font-size:28px;

margin-bottom:25px;

color:#223326;

}

.category-sidebar ul{

list-style:none;

padding:0;

}

.category-sidebar li{

margin-bottom:12px;

}

.category-sidebar a{

display:block;

padding:14px 18px;

background:white;

border-radius:10px;

color:#223326;

font-weight:600;

transition:0.3s;

}

.category-sidebar a:hover{

background:#223326;

color:white;

padding-left:25px;

}

/* CONTENT */

.category-content{

width:100%;

}

.category-articles-grid{

display:grid;

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

gap:35px;

}

/* ================= RECENT ARTICLES DROPDOWN ================= */

.recent-dropdown{
margin-top:30px;
}

.recent-toggle{
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 18px;
background:#223326;
color:white;
border:none;
border-radius:10px;
font-size:17px;
font-weight:bold;
cursor:pointer;
}

.recent-menu{
display:none;
margin-top:12px;
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.recent-menu.show{
display:block;
}

.recent-menu a{
display:block;
padding:14px 18px;
color:#223326;
font-weight:600;
border-bottom:1px solid #eee;
transition:0.3s;
}

.recent-menu a:hover{
background:#eef5ef;
color:orange;
padding-left:25px;
}

/* =======================================================
   WASTE MANAGEMENT SERVICES
======================================================= */

.waste-services{
    padding:100px 8%;
    background:#f8faf8;
}

.section-title{
    font-size:48px;
    color:#223326;
    text-align:center;
    margin-bottom:20px;
    font-weight:700;
}

.section-subtitle{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* Grid */

.waste-services-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:35px;
}

/* First Row */

.waste-card:nth-child(1){
    grid-column:1 / span 2;
}

.waste-card:nth-child(2){
    grid-column:3 / span 2;
}

.waste-card:nth-child(3){
    grid-column:5 / span 2;
}

/* Second Row */

.waste-card:nth-child(4){
    grid-column:2 / span 2;
}

.waste-card:nth-child(5){
    grid-column:4 / span 2;
}

/* Cards */

.waste-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid transparent;
}

.waste-card:hover{
    transform:translateY(-10px);
    border-top:5px solid #f7941d;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.waste-card i{
    font-size:58px;
    color:#f7941d;
    margin-bottom:25px;
}

.waste-card h3{
    color:#223326;
    font-size:24px;
    margin-bottom:18px;
    font-weight:700;
}

.waste-card p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* =======================================================
   Responsive
======================================================= */

@media(max-width:1100px){

.waste-services-grid{

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

}

.waste-card:nth-child(1),
.waste-card:nth-child(2),
.waste-card:nth-child(3),
.waste-card:nth-child(4),
.waste-card:nth-child(5){

grid-column:auto;

}

}

@media(max-width:768px){

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

.section-subtitle{
font-size:16px;
}

.waste-services-grid{

grid-template-columns:1fr;

}

.waste-card{

padding:35px 25px;

}

.waste-card i{

font-size:48px;

}

.waste-card h3{

font-size:22px;

}

}

/* ================= ABOUT PAGE EXTRA SECTIONS ================= */

.zw2l-section,
.about-list-section,
.core-services-section,
.licensing-section,
.industries-section{
padding:100px 8%;
text-align:center;
}

.zw2l-section{
background:#eef5ef;
}

.about-list-section,
.licensing-section{
background:white;
}

.core-services-section{
background:#f8faf8;
}

.industries-section{
background:#eef5ef;
}

.zw2l-section h2,
.about-list-section h2,
.core-services-section h2,
.licensing-section h2,
.industries-section h2{
font-size:46px;
color:#223326;
margin-bottom:40px;
}

.zw2l-section > p{
max-width:1000px;
margin:0 auto 50px;
font-size:18px;
line-height:1.8;
color:#555;
}

.zw2l-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

.zw2l-card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.zw2l-card h3{
color:#223326;
margin-bottom:15px;
}

.zw2l-card p{
font-size:16px;
line-height:1.7;
color:#666;
}

.about-list-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.about-list-grid div{
background:#223326;
color:white;
padding:25px;
border-radius:15px;
font-weight:bold;
}

.core-services-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
text-align:left;
}

.core-services-grid div{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
border-left:6px solid orange;
}

.core-services-grid h3{
color:#223326;
margin-bottom:12px;
}

.core-services-grid p{
color:#666;
line-height:1.7;
}

.values-grid{
grid-template-columns:repeat(3,1fr);
}

/* ================= PROFESSIONAL RESPONSIVE HEADER ================= */

.site-header{
position:sticky;
top:0;
z-index:99999;
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 7%;
background:#12251a;
box-shadow:0 6px 20px rgba(0,0,0,.18);
}

.site-header .logo img{
height:70px;
width:auto;
object-fit:contain;
}

.site-header nav{
display:flex;
align-items:center;
gap:35px;
}

.site-header nav a,
.dropbtn{
color:white;
font-size:17px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.site-header nav a:hover,
.dropbtn:hover{
color:#f7941d;
}

.quote-btn{
background:#f7941d;
color:white !important;
padding:14px 30px;
border-radius:12px;
font-weight:800;
box-shadow:0 8px 18px rgba(247,148,29,.35);
}

.quote-btn:hover{
background:#e88400;
transform:translateY(-2px);
}

.menu-toggle{
display:none;
color:white;
font-size:30px;
cursor:pointer;
}

.dropdown{
position:relative;
}

.dropdown-content{
display:none;
position:absolute;
top:100%;
left:0;
min-width:320px;
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.18);
z-index:999999;
}

.dropdown-content a{
display:block;
padding:16px 20px;
color:#223326 !important;
font-size:15px !important;
border-bottom:1px solid #eee;
}

.dropdown-content a:hover{
background:#eef5ef;
color:#f7941d !important;
padding-left:26px;
}

.dropdown:hover .dropdown-content{
display:block;
}

/* ================= MOBILE HEADER ================= */

@media(max-width:900px){

.site-header{
padding:12px 18px;
}

.site-header .logo img{
height:62px;
}

.menu-toggle{
display:flex;
align-items:center;
justify-content:center;
width:48px;
height:48px;
background:rgba(255,255,255,.08);
border-radius:12px;
}

.site-header nav{
display:none;
position:absolute;
top:100%;
left:0;
width:100%;
background:#12251a;
padding:25px 20px 30px;
flex-direction:column;
align-items:center;
gap:14px;
box-shadow:0 14px 25px rgba(0,0,0,.25);
}

.site-header nav.active{
display:flex;
}

.site-header nav a,
.dropbtn{
width:100%;
text-align:center;
font-size:20px;
padding:14px;
border-radius:10px;
}

.site-header nav a:hover,
.dropbtn:hover{
background:rgba(247,148,29,.12);
}

.dropdown{
width:100%;
}

.dropdown-content{
position:static;
display:block;
width:100%;
min-width:100%;
margin-top:8px;
background:#1c3526;
box-shadow:none;
border-radius:12px;
}

.dropdown-content a{
color:white !important;
font-size:16px !important;
background:transparent;
border-bottom:1px solid rgba(255,255,255,.08);
}

.quote-btn{
width:100%;
max-width:320px;
text-align:center;
font-size:20px !important;
padding:16px 25px !important;
margin-top:8px;
}

}

/* ================= MOBILE STYLE MENU ================= */

.mobile-pro-header{
display:none;
}

.mobile-menu-overlay,
.mobile-side-menu{
display:none;
}

@media(max-width:900px){

/* hide old desktop header */
header:not(.mobile-pro-header){
display:none;
}

.mobile-pro-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:16px 28px;
background:#10251a;
position:sticky;
top:0;
z-index:99999;
box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.mobile-logo img{
width:82px;
height:auto;
}

.mobile-icons{
display:flex;
align-items:center;
gap:24px;
color:white;
font-size:30px;
}

.mobile-menu-btn{
width:58px;
height:58px;
border:3px solid #f7941d;
border-radius:8px;
background:transparent;
color:white;
font-size:30px;
cursor:pointer;
}

.mobile-menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
z-index:99998;
}

.mobile-menu-overlay.active{
display:block;
}

.mobile-side-menu{
display:flex;
position:fixed;
top:0;
right:-68%;
width:68%;
height:100vh;
background:#1f1f1f;
z-index:99999;
flex-direction:column;
padding:80px 38px;
transition:.4s ease;
box-shadow:-12px 0 35px rgba(0,0,0,.45);
}

.mobile-side-menu.active{
right:0;
}

.mobile-close-btn{
position:absolute;
top:32px;
left:35px;
background:none;
border:none;
color:white;
font-size:42px;
cursor:pointer;
}

.mobile-side-menu a,
.mobile-sub-btn{
width:100%;
padding:24px 0;
border:none;
border-bottom:1px solid rgba(255,255,255,.2);
background:none;
color:white;
text-align:left;
font-size:24px;
font-weight:800;
letter-spacing:2px;
text-transform:uppercase;
text-decoration:none;
display:flex;
justify-content:space-between;
align-items:center;
}

.mobile-sub-btn{
cursor:pointer;
}

.mobile-sub-menu{
display:none;
padding:10px 0 10px 18px;
}

.mobile-sub-menu.active{
display:block;
}

.mobile-sub-menu a{
font-size:16px;
padding:16px 0;
letter-spacing:1px;
color:#cfcfcf;
border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-sub-menu a:hover,
.mobile-side-menu a:hover,
.mobile-sub-btn:hover{
color:#f7941d;
}

}

/* =====================================================
   MOBILE ONLY HEADER - DESKTOP STAYS UNCHANGED
===================================================== */

.mobile-pro-header,
.mobile-menu-overlay,
.mobile-side-menu{
display:none;
}

@media(max-width:900px){

body{
overflow-x:hidden;
}

body *{
box-sizing:border-box;
}

img{
max-width:100%;
height:auto;
}

/* Hide desktop header only on mobile */
body > header:not(.mobile-pro-header){
display:none !important;
}

/* Mobile top bar */
.mobile-pro-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 22px;
width: 100%
background:#10251a;
position:sticky;
top:0;
z-index:99999;
box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.mobile-logo img{
width:85px;
height:auto;
}

.mobile-icons{
display:flex;
align-items:center;
gap:22px;
color:white;
font-size:30px;
}

.mobile-menu-btn{
width:58px;
height:58px;
border:3px solid #f7941d;
border-radius:8px;
background:transparent;
color:white;
font-size:30px;
cursor:pointer;
}

/* Dark overlay */
.mobile-menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.48);
z-index:99998;
}

.mobile-menu-overlay.active{
display:block;
}

/* Side menu */
.mobile-side-menu{
display:flex;
position:fixed;
top:0;
right:-70%;
width:70%;
height:100vh;
background:#1f1f1f;
z-index:99999;
flex-direction:column;
padding:85px 38px;
transition:.4s ease;
box-shadow:-12px 0 35px rgba(0,0,0,.45);
overflow-y:auto;
}

.mobile-side-menu.active{
right:0;
}

.mobile-close-btn{
position:absolute;
top:32px;
left:35px;
background:none;
border:none;
color:white;
font-size:42px;
cursor:pointer;
}

.mobile-side-menu a,
.mobile-sub-btn{
width:100%;
padding:22px 0;
border:none;
border-bottom:1px solid rgba(255,255,255,.2);
background:none;
color:white;
text-align:left;
font-size:22px;
font-weight:800;
letter-spacing:2px;
text-transform:uppercase;
text-decoration:none;
display:flex;
justify-content:space-between;
align-items:center;
}

.mobile-sub-menu{
display:none;
padding:8px 0 10px 18px;
}

.mobile-sub-menu.active{
display:block;
}

.mobile-sub-menu a{
font-size:15px;
padding:14px 0;
letter-spacing:1px;
color:#cfcfcf;
border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-sub-menu a:hover,
.mobile-side-menu a:hover,
.mobile-sub-btn:hover{
color:#f7941d;
}

/* Prevent mobile overlap */
section{
padding-left:22px !important;
padding-right:22px !important;
}

.hero,
.about-hero,
.contact-hero,
.blog-hero,
.waste-hero,
.compliance-hero,
.safety-hero,
.faq-hero,
.categories-hero,
.category-hero{
height:auto !important;
min-height:60vh;
padding-top:100px !important;
padding-bottom:80px !important;
}

/* Headings fit mobile */
h1,
.hero-content h1,
.about-hero-content h1,
.contact-hero-content h1,
.blog-hero-content h1,
.waste-hero-content h1,
.compliance-hero-content h1,
.safety-hero-content h1,
.faq-hero-content h1,
.categories-hero-content h1,
.category-hero-content h1{
font-size:34px !important;
line-height:1.2 !important;
}

h2,
.section-title{
font-size:30px !important;
line-height:1.25 !important;
}

p{
font-size:16px;
line-height:1.7;
}

/* All grids stack properly */
.company-section,
.waste-intro,
.compliance-intro,
.safety-intro,
.contact-main-section,
.mission-vision,
.values-grid,
.why-about-grid,
.team-grid,
.waste-services-grid,
.compliance-grid,
.safety-grid,
.management-grid,
.benefits-grid,
.faq-grid,
.categories-grid,
.category-articles-grid,
.process-grid,
.waste-grid,
.news-container,
.news-feature,
.news-row,
.category-layout,
footer{
display:grid;
grid-template-columns:1fr !important;
gap:28px !important;
}

/* Blog/news images */
.news-image img,
.category-article-card img{
height:auto !important;
}

/* Forms fit */
input,
select,
textarea,
button{
max-width:100%;
}

input,
select,
textarea{
width:100%;
font-size:16px;
}

/* Map fit */
.map-container iframe{
height:320px !important;
}

/* Footer */
footer{
text-align:center;
padding:50px 25px !important;
}

.socials{
justify-content:center;
}

/* Floating WhatsApp */
.whatsapp-float{
position:fixed;
right:18px;
bottom:18px;
width:62px;
height:62px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
z-index:999999;
box-shadow:0 10px 25px rgba(0,0,0,.35);
transition:.3s;
}

.whatsapp-float:hover{
transform:translateY(-4px);
}

}

/* Very small phones */
@media(max-width:480px){

.mobile-side-menu{
width:72%;
right:-72%;
padding:85px 28px;
}

.mobile-side-menu a,
.mobile-sub-btn{
font-size:19px;
}

.mobile-logo img{
width:75px;
}

.mobile-menu-btn{
width:52px;
height:52px;
font-size:26px;
}

h1,
.hero-content h1,
.about-hero-content h1,
.contact-hero-content h1,
.blog-hero-content h1,
.waste-hero-content h1,
.compliance-hero-content h1,
.safety-hero-content h1,
.faq-hero-content h1,
.categories-hero-content h1{
font-size:30px !important;
}

}

/* =====================================================
   STOP MOBILE SIDEWAYS MOVEMENT / OVERFLOW FIX
===================================================== */

html,
body{
width:100%;
max-width:100%;
overflow-x:hidden !important;
}

*{
box-sizing:border-box;
}

@media(max-width:900px){

body{
position:relative;
overflow-x:hidden !important;
}

section,
header,
footer,
div{
max-width:100%;
}

.mobile-pro-header{
width:100%;
max-width:100%;
left:0;
right:0;
}

.mobile-side-menu{
max-width:72vw;
}

img,
iframe,
table{
max-width:100%;
}

.news-page,
.news-container,
.news-main,
.news-feature,
.news-row,
.category-layout,
.category-content,
.category-articles-grid{
width:100% !important;
max-width:100% !important;
overflow:hidden;
}

.news-feature,
.news-row{
display:grid !important;
grid-template-columns:1fr !important;
}

.news-text h1,
.news-text h2{
font-size:30px !important;
line-height:1.2 !important;
word-break:normal;
overflow-wrap:break-word;
}

.news-text p{
font-size:16px !important;
line-height:1.7 !important;
}

.news-image img{
width:100% !important;
height:auto !important;
}

}

/* =========================================================
FINAL RESPONSIVE HEADER FIX
PASTE THIS AT THE VERY END OF style.css
========================================================= */

/* Lock the page to the screen */
html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

/* Desktop */
@media (min-width:901px){

.site-header{
    display:flex !important;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}

.mobile-pro-header,
.mobile-menu-overlay,
.mobile-side-menu,
.mobile-menu-btn,
.mobile-close-btn,
.mobile-icons{
    display:none !important;
}

nav{
    display:flex !important;
}

}

/* Mobile */
@media (max-width:900px){

.site-header{
    display:none !important;
}

.mobile-pro-header{
    display:flex !important;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:72px;
    background:#223326;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    z-index:99999;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.mobile-logo img{
    width:58px;
}

.mobile-icons{
    display:flex;
    align-items:center;
    gap:18px;
}

.mobile-icons i{
    color:#fff;
    font-size:22px;
}

.mobile-menu-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.mobile-side-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:300px;
    max-width:85%;
    height:100%;
    background:#223326;
    z-index:100000;
    transition:.35s;
    padding:80px 25px 30px;
    overflow-y:auto;
}

.mobile-side-menu.active{
    right:0;
}

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:none;
    z-index:99998;
}

.mobile-menu-overlay.active{
    display:block;
}

body{
    padding-top:72px;
}

/* Prevent any section from overflowing */
section,
div,
img,
iframe,
table{
    max-width:100%;
}

img{
    height:auto;
}

}


/* BLOG META + ARTICLE PAGES */
.article-meta{display:flex;flex-wrap:wrap;gap:16px;margin:0 0 20px;color:#666;font-size:14px;font-weight:700}.article-meta i{color:#f7941d}.article-meta.light{justify-content:center;color:#fff}.article-hero{min-height:65vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:140px 8% 90px;color:#fff}.article-hero-content{max-width:1000px}.article-hero h1{font-size:54px;line-height:1.15;margin:15px 0 22px}.article-page{padding:90px 8%;background:#fff}.article-container{max-width:1300px;margin:auto;display:grid;grid-template-columns:2.4fr 1fr;gap:60px}.article-content p{font-size:18px;line-height:1.9;color:#333;margin-bottom:24px}.article-sidebar{border-left:1px solid #ddd;padding-left:35px}.article-sidebar h3{font-size:24px;color:#223326;margin:0 0 20px}.article-sidebar a{display:block;color:#333;text-decoration:none;margin-bottom:16px;font-weight:600}.article-sidebar a:hover{color:#f7941d}.article-cta{margin-top:45px;background:#eef5ef;border-left:6px solid #f7941d;padding:35px;border-radius:18px}.article-cta h2{color:#223326;margin-bottom:10px}
@media(max-width:900px){.article-hero{min-height:55vh;padding:110px 22px 70px}.article-hero h1{font-size:32px!important}.article-container{grid-template-columns:1fr;gap:35px}.article-page{padding:60px 22px}.article-content p{font-size:16px}.article-sidebar{border-left:0;padding-left:0}.article-meta{gap:10px;font-size:13px}.news-row,.news-feature{grid-template-columns:1fr!important}.news-image img{height:auto!important}}

/* ABOUT PAGE LISTS */

.about-list{
    max-width:1000px;
    margin:35px auto;
    padding-left:25px;
}

.about-list li{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

.about-list li strong{
    color:#223326;
    font-size:20px;
}

@media(max-width:768px){

.about-list{
    padding-left:18px;
}

.about-list li{
    font-size:16px;
    line-height:1.8;
}

.about-list li strong{
    font-size:18px;
}

}

/*==========================
CLIENTS & INDUSTRIES
==========================*/

.industries-section{
    padding:90px 8%;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#223326;
    margin-bottom:15px;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:30px;
}

.industry-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #ff9900;
}

.industry-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.industry-card i{
    font-size:48px;
    color:#ff9900;
    margin-bottom:20px;
}

.industry-card h3{
    color:#223326;
    margin-bottom:15px;
    font-size:24px;
}

.industry-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:768px){

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

.section-title p{
    font-size:16px;
}

.industry-card{
    padding:25px;
}

}

/* =========================================
   OUR ZW2L APPROACH
========================================= */

.zw2l-approach-section{
    padding:90px 8%;
    background:#eef5ef;
}

.zw2l-approach-section .section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.zw2l-approach-section .section-title h2{
    font-size:42px;
    line-height:1.2;
    color:#223326;
    margin-bottom:18px;
}

.zw2l-approach-section .section-title p{
    font-size:18px;
    line-height:1.8;
    color:#626a64;
}

.zw2l-approach-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1250px;
    margin:auto;
}

.zw2l-approach-card{
    position:relative;
    background:#fff;
    padding:40px 32px;
    border-radius:20px;
    text-align:center;
    border-top:5px solid #f7941d;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:transform .35s ease, box-shadow .35s ease;
    overflow:hidden;
}

.zw2l-approach-card::after{
    content:"";
    position:absolute;
    right:-45px;
    bottom:-45px;
    width:110px;
    height:110px;
    border-radius:50%;
    background:rgba(247,148,29,.08);
}

.zw2l-approach-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.14);
}

.zw2l-approach-card i{
    position:relative;
    z-index:1;
    width:78px;
    height:78px;
    margin:0 auto 24px;
    border-radius:50%;
    background:#223326;
    color:#f7941d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 8px 20px rgba(34,51,38,.22);
}

.zw2l-approach-card h3{
    position:relative;
    z-index:1;
    font-size:23px;
    line-height:1.3;
    color:#223326;
    margin-bottom:16px;
}

.zw2l-approach-card p{
    position:relative;
    z-index:1;
    font-size:16px;
    line-height:1.8;
    color:#666;
}

/* Tablet */
@media(max-width:1000px){

    .zw2l-approach-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:700px){

    .zw2l-approach-section{
        padding:65px 20px;
    }

    .zw2l-approach-section .section-title{
        margin-bottom:40px;
    }

    .zw2l-approach-section .section-title h2{
        font-size:31px;
    }

    .zw2l-approach-section .section-title p{
        font-size:16px;
    }

    .zw2l-approach-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .zw2l-approach-card{
        padding:32px 24px;
    }

    .zw2l-approach-card i{
        width:68px;
        height:68px;
        font-size:30px;
    }

    .zw2l-approach-card h3{
        font-size:21px;
    }

}

/*==============================
OUR FACILITY
==============================*/

.facility-section{

padding:90px 8%;
background:#fff;

}

.facility-gallery{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
margin-top:50px;

}

.facility-card{

background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.12);
transition:.35s;

}

.facility-card:hover{

transform:translateY(-8px);

}

.facility-card img{

width:100%;
height:340px;
object-fit:cover;

}

.facility-card h3{

padding:20px 25px 10px;
color:#f7941d;

}

.facility-card p{

padding:0 25px 30px;
line-height:1.8;

}

@media(max-width:900px){

.facility-gallery{

grid-template-columns:1fr;

}

}