:root {
    --forest-900: #123524;
    --forest-800: #1c5a39;
    --forest-700: #26734a;
    --forest-600: #2f8a57;
    --sage-100: #edf6ef;
    --sage-200: #dceedd;
    --text-900: #173123;
    --text-700: #4f6758;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(18, 53, 36, 0.12);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
}

html { scroll-behavior: smooth; }

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-900);
    background:
        radial-gradient(circle at top left, rgba(47, 138, 87, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfdfb 0%, #f4f9f3 100%);
}

a { text-decoration: none; }

.navbar {
    background: rgba(18, 53, 36, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(18, 53, 36, 0.15);
}

.navbar-brand { font-weight: 700; letter-spacing: 0.02em; }
.nav-link { color: rgba(255, 255, 255, 0.86) !important; font-weight: 500; }
.nav-link:hover, .nav-link.active { color: #c6f0d3 !important; }

.page-hero, .home-hero { position: relative; overflow: hidden; color: var(--white); }

.home-hero {
    padding: 8rem 0 7rem;
    background:
        linear-gradient(135deg, rgba(18, 53, 36, 0.94), rgba(47, 138, 87, 0.88)),
        linear-gradient(90deg, #163d29, #2c7b4a);
}

.page-hero {
    padding: 7rem 0 4.5rem;
    background:
        linear-gradient(135deg, rgba(18, 53, 36, 0.96), rgba(38, 115, 74, 0.9)),
        linear-gradient(90deg, #163d29, #2c7b4a);
}

.home-hero::before, .page-hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -35% auto;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(198, 240, 211, 0.35), transparent 62%);
    border-radius: 50%;
}

.eyebrow, .page-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.page-banner {
    background: rgba(220, 238, 221, 0.75);
    color: var(--forest-800);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    line-height: 1.05;
    font-weight: 800;
    margin-top: 1.25rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
}

.hero-panel, .surface-card, .service-card, .value-card, .impact-card, .contact-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(38, 115, 74, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.service-card:hover, .value-card:hover, .impact-card:hover, .contact-card:hover {
    transform: translateY(-4px);
    transition: 0.25s ease;
}

.btn-brand {
    background: linear-gradient(135deg, #6dcb83, #3ea564);
    color: var(--white);
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(38, 115, 74, 0.25);
}

.btn-brand:hover { color: var(--white); background: linear-gradient(135deg, #5fc176, #2f8a57); }

.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
}

.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.section-space { padding: 5rem 0; }
.section-title { font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; color: var(--forest-900); margin-bottom: 1rem; }
.section-copy { color: var(--text-700); max-width: 46rem; }

.icon-badge {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-100), var(--sage-200));
    color: var(--forest-800);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.stat-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(228, 243, 231, 0.99));
    border: 1px solid rgba(38, 115, 74, 0.14);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    min-height: 100%;
}

.stat-card h3 {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    line-height: 1.1;
    color: var(--forest-900);
    margin-bottom: 0.55rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.stat-card-title-tight {
    font-size: clamp(1.1rem, 1.9vw, 1.45rem) !important;
    letter-spacing: 0.01em;
}

.stat-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-900);
}
.list-check, .footer-links { list-style: none; padding: 0; margin: 0; }
.list-check li, .footer-links li { margin-bottom: 0.8rem; }
.list-check i { color: var(--forest-600); margin-right: 0.65rem; }

.split-band { background: linear-gradient(180deg, rgba(220, 238, 221, 0.65), rgba(255, 255, 255, 0.96)); }

.quote-band {
    background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
    color: var(--white);
    border-radius: calc(var(--radius-lg) + 0.25rem);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.map-placeholder {
    min-height: 340px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(38, 115, 74, 0.12);
    color: var(--text-900);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.map-head { margin-bottom: 1rem; }

.map-frame {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 1rem;
}

.map-open-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.form-control, .form-control:focus {
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    border-color: rgba(38, 115, 74, 0.16);
    box-shadow: none;
}

.footer {
    background: #102d1f;
    color: rgba(255, 255, 255, 0.82);
    padding-top: 4rem;
}

.footer-brand { color: var(--white); font-size: 1.4rem; font-weight: 800; }
.footer a { color: rgba(255, 255, 255, 0.75); }
.footer a:hover { color: #c6f0d3; }

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.social-link {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    background: rgba(198, 240, 211, 0.2);
    border-color: rgba(198, 240, 211, 0.65);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding: 1.4rem 0;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse { padding-top: 1rem; }
    .home-hero, .page-hero { padding-top: 6.5rem; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2.4rem; }
    .hero-panel, .surface-card, .service-card, .value-card, .impact-card, .contact-card, .quote-band { padding: 1.35rem; }
}
