/* ==========================
   EDEN REMOVALS STYLE.CSS
   ========================== */

:root{
--primary:#16a34a;
--primary-dark:#15803d;
--dark:#111827;
--text:#374151;
--light:#f8fafc;
--white:#ffffff;
--shadow:0 10px 30px rgba(0,0,0,.08);
--radius:18px;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
line-height:1.7;
color:var(--text);
background:var(--white);
overflow-x:hidden;
}

/* ==========================
   GLOBAL
   ========================== */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section{
padding:100px 0;
}

.grey{
background:var(--light);
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
color:var(--dark);
margin-bottom:15px;
font-weight:800;
}

.section-title p{
font-size:18px;
color:#6b7280;
}

.center{
text-align:center;
margin-top:40px;
}

/* ==========================
   HEADER
   ========================== */

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.96);
backdrop-filter:blur(10px);
z-index:1000;
box-shadow:0 2px 20px rgba(0,0,0,.05);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:60px;
height:60px;
object-fit:contain;
}

.logo h2{
font-size:24px;
font-weight:800;
color:var(--dark);
}

.logo span{
font-size:13px;
color:#6b7280;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
font-weight:600;
color:var(--dark);
transition:.3s;
}

nav a:hover{
color:var(--primary);
}

/* ==========================
   BUTTONS
   ========================== */

.btn{
display:inline-block;
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:700;
transition:.3s;
cursor:pointer;
}

.btn-primary{
background:var(--primary);
color:white;
}

.btn-primary:hover{
background:var(--primary-dark);
transform:translateY(-3px);
}

.btn-secondary{
background:white;
color:var(--dark);
border:2px solid white;
}

.btn-secondary:hover{
transform:translateY(-3px);
}

/* ==========================
   HERO
   ========================== */

.hero{
position:relative;
min-height:100vh;
height:auto;
background:
url('images/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-overlay{
position:relative;
inset:0;
background:rgba(0,0,0,.6);
}

.hero-content{
position:relative;
z-index:2;
color:white;
max-width:900px;
}

.hero h1{
font-size:62px;
line-height:1.1;
font-weight:800;
margin-bottom:25px;
}

.hero p{
font-size:22px;
margin-bottom:35px;
opacity:.95;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* ==========================
   STATS
   ========================== */

.stats{
background:var(--primary);
color:white;
padding:60px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.stats h3{
font-size:48px;
font-weight:800;
}

.stats p{
font-size:18px;
}

/* ==========================
   SERVICES
   ========================== */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:white;
padding:35px;
border-radius:var(--radius);
box-shadow:var(--shadow);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
color:var(--primary);
margin-bottom:12px;
font-size:24px;
}

.card p{
color:#6b7280;
}

/* ==========================
   AREAS
   ========================== */

.areas-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px;
}

.areas-grid span{
background:white;
padding:15px;
text-align:center;
border-radius:12px;
font-weight:600;
box-shadow:var(--shadow);
}

/* ==========================
   GALLERY
   ========================== */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:280px;
object-fit:cover;
border-radius:18px;
box-shadow:var(--shadow);
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

/* ==========================
   REVIEWS
   ========================== */

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.review-card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:var(--shadow);
font-size:18px;
}

.review-card p{
margin-top:15px;
}

/* ==========================
   FAQ
   ========================== */

.faq{
max-width:900px;
margin:auto;
}

details{
background:white;
padding:22px;
margin-bottom:15px;
border-radius:14px;
box-shadow:var(--shadow);
}

summary{
font-weight:700;
cursor:pointer;
font-size:18px;
}

details p{
margin-top:15px;
}

/* ==========================
   CTA
   ========================== */

.cta{
background:var(--dark);
color:white;
text-align:center;
}

.cta h2{
font-size:48px;
margin-bottom:15px;
}

.cta p{
font-size:20px;
}

.email{
margin-top:25px;
font-size:18px;
}

/* ==========================
   FOOTER
   ========================== */

footer{
background:#0b1220;
color:white;
text-align:center;
padding:50px 0;
}

footer h3{
margin-bottom:10px;
font-size:26px;
}

/* ==========================
   WHATSAPP BUTTON
   ========================== */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:70px;
height:70px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
color:white;
box-shadow:0 10px 30px rgba(0,0,0,.2);
z-index:999;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

/* ==========================
   MOBILE
   ========================== */

@media(max-width:991px){

.hero h1{
font-size:48px;
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

nav ul{
display:none;
}

}

@media(max-width:768px){

.hero{
padding:0 20px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

.section{
padding:70px 0;
}

.section-title h2{
font-size:32px;
}

.stats-grid{
grid-template-columns:1fr;
gap:20px;
}

.cta h2{
font-size:36px;
}

.logo h2{
font-size:20px;
}

.logo img{
width:50px;
height:50px;
}

}
html {
    scroll-padding-top: 100px;
}

@media (max-width: 768px) {

    header {
        height: 90px;
    }

    .hero {
        padding-top: 120px;
    }

}

@media (max-width: 768px) {

  .navbar {
    padding: 12px 15px;
  }

  .logo img {
    width: 55px;
    height: 55px;
  }

  .logo-text h2 {
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .logo-text p {
    font-size: 0.8rem;
  }

  .quote-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 30px;
  }

  .hero {
    padding-top: 160px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1.1rem;
  }
}