:root {
    --green-900: #1d4d2b;
    --green-800: #2f6c35;
    --green-700: #4b9b3e;
    --lime-400: #9fd447;
    --gold-400: #f2b632;
    --orange-400: #f57f2b;
    --cream-100: #fff9ef;
    --cream-200: #f8f2df;
    --text-900: #233220;
    --text-700: #61705e;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(38, 76, 31, 0.14);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-900);
    background:
        radial-gradient(circle at top left, rgba(159, 212, 71, 0.2), transparent 24%),
        radial-gradient(circle at top right, rgba(242, 182, 50, 0.18), transparent 26%),
        linear-gradient(180deg, #fffef8 0%, #f7f4e8 100%);
}

a { text-decoration: none; }

.navbar {
    background: rgba(29, 77, 43, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(29, 77, 43, 0.18);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-mark {
    height: 52px;
    width: auto;
}

.footer-logo {
    max-width: 210px;
    width: 100%;
    height: auto;
}

.hero-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 0.85rem 1rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.86) !important;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: #ffe39d !important;
}

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

.hero {
    padding: 8rem 0 7rem;
    background:
        linear-gradient(120deg, rgba(29, 77, 43, 0.94), rgba(75, 155, 62, 0.88)),
        linear-gradient(135deg, #215630, #f2b632);
}

.page-hero {
    padding: 7rem 0 4.75rem;
    background:
        linear-gradient(120deg, rgba(29, 77, 43, 0.96), rgba(47, 108, 53, 0.88)),
        linear-gradient(135deg, #215630, #f2b632);
}

.hero::before,
.page-hero::before,
.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero::before,
.page-hero::before {
    width: 26rem;
    height: 26rem;
    right: -5rem;
    bottom: -9rem;
    background: radial-gradient(circle, rgba(255, 227, 157, 0.35), transparent 60%);
}

.hero::after,
.page-hero::after {
    width: 16rem;
    height: 16rem;
    left: -4rem;
    top: -3rem;
    background: radial-gradient(circle, rgba(245, 127, 43, 0.28), transparent 60%);
}

.eyebrow,
.page-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    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-chip {
    background: linear-gradient(135deg, rgba(255, 228, 167, 0.72), rgba(159, 212, 71, 0.42));
    color: var(--green-900);
}

.hero-title {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.02;
    font-weight: 900;
    margin-top: 1.2rem;
}

.hero-copy {
    max-width: 44rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
}

.btn-brand {
    background: linear-gradient(135deg, var(--gold-400), var(--orange-400));
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    padding: 0.9rem 1.55rem;
    box-shadow: 0 14px 30px rgba(245, 127, 43, 0.28);
}

.btn-brand:hover {
    color: var(--white);
    background: linear-gradient(135deg, #f0a91d, #e56d1b);
}

.btn-outline-light-strong {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    border-radius: 999px;
    font-weight: 800;
    padding: 0.9rem 1.55rem;
}

.btn-outline-light-strong:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.section-space { padding: 5rem 0; }

.section-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 900;
    color: var(--green-900);
    margin-bottom: 1rem;
}

.section-copy {
    color: var(--text-700);
    max-width: 46rem;
}

.panel,
.card-sun,
.card-field,
.card-cream {
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.panel,
.card-cream {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(75, 155, 62, 0.1);
}

.card-sun {
    background: linear-gradient(180deg, rgba(255, 247, 223, 0.98), rgba(255, 236, 184, 0.95));
    border: 1px solid rgba(242, 182, 50, 0.18);
}

.card-field {
    background: linear-gradient(180deg, rgba(243, 251, 234, 0.98), rgba(224, 242, 203, 0.98));
    border: 1px solid rgba(75, 155, 62, 0.16);
}

.card-hero {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow);
}

.icon-badge {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--green-700), var(--gold-400));
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.stat-box h3 {
    margin-bottom: 0.35rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-900);
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-clean li {
    margin-bottom: 0.85rem;
    color: var(--text-900);
}

.list-clean i {
    color: var(--orange-400);
    margin-right: 0.65rem;
}

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

.soft-band {
    background: linear-gradient(180deg, rgba(255, 245, 213, 0.75), rgba(240, 248, 228, 0.92));
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.table-brand {
    margin: 0;
    background: rgba(255, 255, 255, 0.92);
}

.table-brand thead th {
    background: var(--green-900);
    color: var(--white);
    border: none;
}

.table-brand td {
    vertical-align: middle;
}

.footer {
    background: #173b21;
    color: rgba(255, 255, 255, 0.84);
    padding-top: 4rem;
}

.footer-brand {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
}

.footer a { color: rgba(255, 255, 255, 0.76); }
.footer a:hover { color: #ffe39d; }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.75rem; }

.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(255, 227, 157, 0.2);
    border-color: rgba(255, 227, 157, 0.65);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 2rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.map-card {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

@media (max-width: 575.98px) {
    .hero-title { font-size: 2.5rem; }
    .panel, .card-sun, .card-field, .card-cream, .card-hero, .quote-band { padding: 1.35rem; }
}
