:root {
    --body-color: #083b2a;
    --bg-dark: #083b2a;
    --bg-dark-accent: #0c3324;
    --bg-light: #f5f7f4;
    --bg-card-light: #ffffff;
    --primary-accent: #2fae66;
    --primary-hover: #41c97c;
    --gradient-emerald: linear-gradient(to right, #11623e, #2daa64);
    --text-dark: #0f1e17;
    --text-muted-dark: #4d5c54;
    --text-light: #ffffff;
    --text-muted-light: #aee8cf;
    --border-dark: rgba(255, 255, 255, 0.15);
    --border-light: #e2e8e4;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-width: 1300px;
    --container-offset: 16px;
    --item-gap: 16px;
    --card-bg-color: #0f5d3c;
    --card-border-color: #226a4b; 
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--body-color);
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.4;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.h-list{display: flex; align-items: center; gap: var(--item-gap)}

a:focus-visible, 
button:focus-visible {
    outline: none;
    outline-offset: 3px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global Layout Components */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-offset);
    position: relative;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.text-muted-light{color: var(--text-muted-light) !important;}


.badge{display: inline-flex; gap: 8px; font-weight: 700; align-items: center; border: solid 1px #d4ccaf; border-radius: 50px; font-size: 12px; padding: 10px 20px; letter-spacing: 1.2px;}
.badge-primary{background: var(--body-color); color: var(--text-muted-light);}

.eyebrow-dark { color: #8bb5a0; }
.eyebrow-light { color: var(--card-bg-color); }

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}


.form-group{position: relative;}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: #0a4a30;
    border: 0;
    border-radius: 6px;
    padding: 14px 14px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: none;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    display: block;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 2px rgba(47, 174, 102, 0.2);
}
.form-group textarea{height: 120px;}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: #083b2a;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Utility Helper Classes */
.color-green-dark { color: #1a5d3a; }
.mb-12 { margin-bottom: 12px; }
.color-muted-light { color: var(--text-muted-light); }
.color-muted-dark { color: var(--text-muted-dark); }
.text-size-15 { font-size: 15px; }


.site-header {
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: solid 1px #1b4a3b;
    background: var(--body-color);
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.site-header .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.site-header .nav-links li{list-style: none;}
.site-header .nav-links a {
    color: white;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-header .nav-links a:hover,
.site-header .nav-links li.current-menu-item a {
    color: var(--primary-accent);
}

.site-header .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
}

.nav-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

.nav-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header Breakpoints */
@media (max-width: 768px) {
    .site-header .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        padding: 80px 32px;
        gap: 24px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 100;
        align-items: flex-start;
    }

    .site-header .nav-links a {
        color: var(--text-dark);
    }

    .site-header .nav-links a:hover,
    .site-header .nav-links a.active {
        color: var(--primary-accent);
    }

    .site-header .nav-links.active {
        right: 0;
    }

    .site-header .nav-toggle {
        display: block;
        z-index: 101;
    }
}

.site-footer {
    padding: 80px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13.6px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.site-footer .footer-brand p {
    color: var(--text-muted-light);
    margin-top: 20px;
    line-height: 1.6;
    max-width: 310px;
}
.site-footer .footer-brand p:last-child{color: #8fa0b8;}

.site-footer .footer-col h2,
.site-footer .footer-col h3 {
    color: var(--text-light);
    font-size: 12.8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.site-footer .footer-col ul li {
    margin-bottom: 12px;
}

.site-footer .footer-col ul a {
    color: var(--text-muted-light);
    transition: color 0.2s;
}

.site-footer .footer-col ul a:hover,
.site-footer .footer-col ul li.current-menu-item a {
    color: var(--text-light);
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #8fa0b8; /* Enhanced contrast ratio */
    font-size: 12.8px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner {
    background: var(--gradient-emerald);
    border-radius: 12px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15.2px;
}
.cta-banner .cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-banner .btn-cta-primary {
    background-color: #0b2218;
    color: var(--text-light);
}

.cta-banner .btn-cta-primary:hover {
    background-color: #05140e;
}

.cta-banner .btn-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.cta-banner .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.font-weight-400 {font-weight: 400;}
.font-weight-500 {font-weight: 500;}
.font-weight-600 {font-weight: 600;}
.font-weight-700 {font-weight: 700;}
.font-weight-800 {font-weight: 800;}

/* CTA Breakpoints */
@media (max-width: 768px) {
    .cta-banner .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 32px;
    }

    .cta-banner .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-banner .cta-buttons .btn {
        width: 100%;
    }
}

/* Footer Breakpoints */
@media (max-width: 1024px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}
