/* --- THEME 2: GREENFIELD CSS --- */

/* 1. Variables & Colors */
:root {
    --primary: #1B4332;       /* Forest Green */
    --secondary: #F1F7ED;     /* Mist Bg */
    --accent: #95D13C;        /* Electric Lime (Action) */
    --text-dark: #2D3748;
    --white: #ffffff;
    --border-radius: 20px;    /* Soft, rounded corners */
    --pill-radius: 50px;      /* For buttons */
    --section-bg: var(--secondary);
}

/* 2. Base Resets & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--text-dark); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.5px; }

/* 3. Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section-padding { padding: 100px 0; } /* More breathing room */
.section-bg { background-color: var(--section-bg); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.accent-text { color: var(--accent); }

/* 4. Buttons & Inputs (Pill/Organic Style) */
.btn {
    display: inline-block; padding: 15px 40px; 
    background: linear-gradient(135deg, var(--accent), #7ab32b); /* Gradient button */
    color: var(--primary); font-weight: 700; text-transform: uppercase; border: none; cursor: pointer;
    border-radius: var(--pill-radius); /* Pill shape */
    box-shadow: 0 5px 15px rgba(149, 209, 60, 0.4);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(149, 209, 60, 0.6); }
.full-width { width: 100%; }

input, textarea {
    width: 100%; padding: 15px; border: 1px solid #dae2d3; background: var(--white);
    border-radius: var(--border-radius); font-family: inherit; margin-bottom: 20px;
    transition: 0.3s;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(149, 209, 60, 0.1); }

/* 5. Header (Clean & Airy) */
header { background: var(--white); padding: 25px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.5rem; color: var(--primary); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.nav-btn { padding: 12px 25px; font-size: 0.8rem; box-shadow: none; background: var(--primary); color: var(--accent); }
.nav-btn:hover { background: var(--accent); color: var(--primary); }
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--primary); }

/* 6. Hero Section (Organic shapes) */
.hero { 
    background: url('https://placehold.co/1920x800/1B4332/ffffff?text=Green+Land') center/cover;
    padding: 120px 0 180px; /* Extra padding bottom for wave effect */
    position: relative; color: var(--white);
    border-bottom-left-radius: 50% 100px; /* Creates a curved bottom edge */
    border-bottom-right-radius: 50% 100px;
    overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27, 67, 50, 0.9), rgba(27, 67, 50, 0.6)); }
.hero-layout { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; }
.hero-benefits li { margin-bottom: 15px; font-weight: 600; display: flex; align-items: center; }
.hero-benefits li::before { content: "✓"; color: var(--primary); background: var(--accent); width: 25px; height: 25px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 15px; font-weight: 900; }

.hero-form {
    background: var(--white); padding: 40px; color: var(--text-dark); flex: 0 0 450px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.2);
}

/* 7. Trust Bar */
.trust-bar { display: none; } /* Hiding trust bar for this cleaner look */

/* 8. Services Grid (Soft Cards) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.service-card {
    background: var(--white); border-radius: var(--border-radius); overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; border: 2px solid transparent;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-10px); }
.service-img { height: 220px; background-size: cover; background-position: center; }
.service-content { padding: 30px; text-align: center; }
.read-more-link { color: var(--primary); font-weight: 700; display: inline-block; margin-top: 15px; padding: 8px 20px; background: var(--secondary); border-radius: var(--pill-radius); transition: 0.3s;}
.service-card:hover .read-more-link { background: var(--accent); color: var(--primary); }

/* 9. Why Us (Hub & Spoke - Circular View) */
.section-title { font-size: 2.5rem; color: var(--primary); }
.hub-container { display: flex; justify-content: center; align-items: center; gap: 40px; margin-top: 80px; }
.hub-center { flex: 0 0 200px; height: 200px; background: var(--white); color: var(--primary); display: flex; justify-content: center; align-items: center; font-weight: 900; border-radius: 50%; border: 5px solid var(--accent); box-shadow: 0 0 30px rgba(149, 209, 60, 0.3); z-index: 2;}
.feature-box {
    background: var(--white); border-radius: var(--pill-radius); padding: 25px 35px; text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative;
}
.feature-box::before { content:''; position: absolute; width: 40px; height: 2px; background: var(--accent); top: 50%; }
.hub-column.left .feature-box::before { right: -40px; }
.hub-column.right .feature-box::before { left: -40px; }
.hub-column { display: flex; flex-direction: column; gap: 40px; flex: 1; max-width: 300px; }

/* 10. Footer */
footer { background: var(--primary); color: #a4c9bc; padding-top: 100px; margin-top: -50px; /* overlap section above */ position: relative; z-index: 1;}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding-bottom: 50px; }
footer h3 { color: var(--accent); margin-bottom: 25px; font-size: 1.1rem;}
footer a:hover { color: var(--accent); }
.footer-btn { background: var(--accent); color: var(--primary); box-shadow: none; }
.footer-phone { font-size: 1.5rem; color: var(--white); font-weight: 900; }
.copyright { background: #123325; padding: 30px 0; text-align: center; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; } .mobile-toggle { display: block; }
    .hero { border-radius: 0; padding-bottom: 100px; }
    .hero-layout, .hub-container { flex-direction: column; } .hero-form, .hub-column { width: 100%; max-width: none; }
    .feature-box::before { display: none; }
}
