:root {
    --bg: #f4f8f4;
    --text: #2c3e2e;
    --primary: #4caf50;
    --secondary: #1b5e20;
    --white: #ffffff;
    --font: 'Outfit', sans-serif;
}

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

body { background: var(--bg); color: var(--text); font-family: var(--font); overflow-x: hidden; }

.navbar { position: fixed; width: 100%; top: 0; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 100; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--secondary); letter-spacing: -1px; }
.nav-links a { margin-left: 2rem; text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

.hero { height: 100vh; background: url('assets/images/hero.jpg') center/cover; position: relative; display: flex; align-items: center; padding: 0 5%; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2)); }
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 600px; }
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; }
.hero-content p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2.5rem; }

.btn { display: inline-block; background: var(--primary); color: var(--white); padding: 1.2rem 2.5rem; text-decoration: none; border: none; border-radius: 50px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 20px rgba(76,175,80,0.3); }
.btn:hover { background: var(--secondary); transform: translateY(-3px); }

.intro { padding: 8rem 5%; text-align: center; }
.intro-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 4rem; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.intro h2 { font-size: 3rem; color: var(--secondary); margin-bottom: 1rem; }
.intro p { font-size: 1.2rem; line-height: 1.8; color: #555; }

.services { padding: 5rem 5%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.s-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; }
.s-card:hover { transform: translateY(-10px); }
.s-card img { width: 100%; height: 250px; object-fit: cover; }
.s-card h3 { padding: 2rem 2rem 0; font-size: 1.5rem; color: var(--secondary); }
.s-card p { padding: 1rem 2rem 2rem; color: #666; line-height: 1.6; }

.banner { height: 400px; background: url('assets/images/banner.jpg') center/cover; background-attachment: fixed; position: relative; }
.banner-overlay { position: absolute; inset: 0; background: rgba(27,94,32,0.8); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); text-align: center; padding: 0 5%; }
.banner-overlay h2 { font-size: 3rem; margin-bottom: 1rem; }

.contact { padding: 8rem 5%; max-width: 800px; margin: 0 auto; }
.contact h2 { font-size: 3.5rem; color: var(--secondary); }
form { display: flex; flex-direction: column; gap: 1.5rem; }
form input, form select { padding: 1.5rem; border: 2px solid #ddd; border-radius: 15px; font-family: var(--font); font-size: 1rem; outline: none; transition: 0.3s; }
form input:focus, form select:focus { border-color: var(--primary); }

.footer { padding: 6rem 5%; background: var(--secondary); color: var(--white); }
.f-info { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer h3 { font-size: 2rem; margin-bottom: 1rem; }
.footer a { color: #a5d6a7; text-decoration: none; margin-bottom: 0.5rem; transition: 0.3s; }
.footer a:hover { color: var(--white); }

.cookie-banner { position: fixed; bottom: 0; width: 100%; background: #fff; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 1000; }
.cookie-banner a { color: var(--primary); font-weight: bold; }
.cookie-banner button { background: var(--secondary); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
