:root { --primary: #2d5a27; --accent: #d4a373; --white: #ffffff; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: #333; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 40px; background: var(--white); height: 80px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.logo-img { height: 50px !important; width: auto !important; }
.navbar ul { display: flex; list-style: none; gap: 25px; }
.navbar a { text-decoration: none; color: var(--primary); font-weight: bold; }

/* Hero */
.hero { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background.jpg') center/cover; height: 50vh; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; text-align: center; }

/* Grid Layout */
.container { max-width: 1100px; margin: 40px auto; padding: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-top: 5px solid var(--primary); }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; padding: 15px; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.contact-form { display: flex; flex-direction: column; gap: 15px; max-width: 600px; margin-top: 20px; }
.contact-form input, .contact-form textarea { padding: 12px; border: 1px solid #ccc; border-radius: 4px; }
.btn-gold { background: #d4a373; color: white; border: none; padding: 15px; cursor: pointer; font-weight: bold; }
.btn-gold:hover { background: #b8860b; }