/* -----------------------
GLOBAL RESET
----------------------- */

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

body{
background:#ffffff;
color:#222;
line-height:1.6;
}

/* -----------------------
HEADER
----------------------- */

.main-header{
background:#05a65f;
color:white;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 30px;
position:sticky;
top:0;
z-index:9999;
}

.logo{
font-size:20px;
font-weight:bold;
}
.logo img {
  height: 3.5em;
  width: auto;
  display: block;
}

/* -----------------------
NAVIGATION
----------------------- */

nav ul{
list-style:none;
display:flex;
align-items:center;
gap:25px;
}

nav ul li{
position:relative;
}

nav ul li a{
color:white;
text-decoration:none;
padding:10px 12px;
display:block;
border-radius:5px;
}

nav ul li a:hover{
background:#0f5f3a;
}

/* -----------------------
DROPDOWN MENU
----------------------- */

.dropdown-menu{
display:none;
position:absolute;
top:40px;
left:0;
background:#0b3f28;
min-width:170px;
border-radius:6px;
overflow:hidden;
}

.dropdown-menu li a{
padding:10px 15px;
white-space:nowrap;
}

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

/* -----------------------
HAMBURGER MENU
----------------------- */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* -----------------------
HERO SECTION
----------------------- */

.hero{
height:80vh;
background:url("images/hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,150,70,0.5);
}

.hero-content{
position:relative;
color:white;
max-width:700px;
padding:20px;
}
.hero-content img {
  height: 15.5em;
}

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

.hero p{
font-size:18px;
margin-bottom:25px;
}

/* -----------------------
BUTTON
----------------------- */

.btn{
background:#00a050;
color:white;
padding:14px 30px;
text-decoration:none;
border-radius:6px;
display:inline-block;
font-weight:bold;
}

.btn:hover{
background:#008040;
}

/* -----------------------
SECTIONS
----------------------- */

section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

section h2{
margin-bottom:30px;
text-align:center;
}

/* -----------------------
GRID LAYOUT
----------------------- */

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

/* -----------------------
SERVICE CARDS
----------------------- */

.card{
padding:25px;
border:1px solid #eee;
border-radius:10px;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

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

/* -----------------------
PRICING
----------------------- */

.pricing{
text-align:center;
}

.price-card{
border:1px solid #ddd;
padding:30px;
text-align:center;
border-radius:10px;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.price-card h2{
margin:15px 0;
color:#00a050;
}

/* -----------------------
CONTACT FORM
----------------------- */

form{
max-width:500px;
margin:auto;
}

input, textarea{
width:100%;
padding:12px;
margin-top:10px;
border:1px solid #ccc;
border-radius:6px;
font-size:14px;
}

textarea{
min-height:120px;
}

button{
margin-top:15px;
padding:12px 25px;
background:#00a050;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#008040;
}

/* -----------------------
FOOTER
----------------------- */

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}

/* -----------------------
GREEN BACKGROUND PAGES
----------------------- */

.green-page{
background:#0f5f3a;
min-height:100vh;
}

.green-page section{
background:white;
border-radius:10px;
padding:40px;
}

/* -----------------------
MOBILE RESPONSIVE (UPDATED HEADER)
----------------------- */

@media (max-width:768px){

.main-header{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:space-between;
padding:15px 20px;
}

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

.menu-toggle{
display:block;
font-size:28px;
cursor:pointer;
}

#nav-menu{
display:none;
width:100%;
margin-top:15px;
}

#nav-menu.show{
display:block;
}

#nav-menu ul{
flex-direction:column;
width:100%;
background:#0b3f28;
gap:0;
}

#nav-menu ul li{
width:100%;
text-align:center;
}

#nav-menu ul li a{
padding:15px;
display:block;
}

.dropdown-menu{
position:static;
display:block;
background:#0f5f3a;
border-radius:0;
min-width:100%;
}

.hero{
height:70vh;
}

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

.hero p{
font-size:16px;
}

section{
padding:40px 15px;
}

}

/* -----------------------
REST (UNCHANGED)
----------------------- */

.site-footer{
background:#111;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}

.white-box{
background:white;
border-radius:12px;
padding:50px;
max-width:1100px;
margin:60px auto;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-grid{
display:flex;
gap:40px;
align-items:flex-start;
}

.contact-left{
flex:1;
}

.contact-right{
flex:1;
}

.contact-left h2{
margin-bottom:15px;
}

.contact-left p{
margin-bottom:20px;
}

.contact-left ul li{
margin-bottom:8px;
}

@media (max-width:768px){
.contact-grid{
flex-direction:column;
}
}

.pricing-layout{
display:flex;
gap:50px;
align-items:flex-start;
width:100%;
}

.pricing-left{
flex:1;
}

.pricing-left ul{
padding-left:20px;
}

.pricing-left li{
margin-bottom:10px;
}

.pricing-right{
flex:2;
width:100%;
}

.pricing-grid{
display:grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap:25px;
width:100%;
max-width:100%;
}

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

.price-card.highlight{
border:2px solid #00a050;
transform:scale(1.05);
}

@media (max-width:768px){
.pricing-layout{
flex-direction:column;
}

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

/* -----------------------
WHATSAPP BUTTON
----------------------- */

.whatsapp-btn{
position:fixed;
bottom:20px;
left:20px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
color:white;

box-shadow:
0 0 10px rgba(0,255,120,0.7),
inset 0 0 8px rgba(255,255,255,0.3);

border:2px solid rgba(255,255,255,0.4);

z-index:9999;
transition:0.3s;
}

.whatsapp-btn:hover{
transform:scale(1.1);
box-shadow:
0 0 20px rgba(0,255,120,1),
inset 0 0 10px rgba(255,255,255,0.5);
}

.share-btn {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  color: white;

  box-shadow:
    0 0 10px rgba(0, 255, 120, 0.7),
    inset 0 0 8px rgba(255, 255, 255, 0.3);

  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 9999;
  transition: 0.3s;
}

.share-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 20px rgba(0, 255, 120, 1),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
}