@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins.regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins.bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-dark-green: #0f2a0f;
    --accent-green: #5a9e2f;
    --btn-green: #4f9d3e;
    --text-white: #ffffff;
    --text-grey: #cfcfcf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark-green);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;

    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi', sans-serif;
    color: white;
}


.container,
.nav-container,
.hero-content {
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}


.nav-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding-top: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    border: 2px solid transparent;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    border: 2px solid var(--bg-dark-green);
}

.logo {
    height: 37px;
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.nav-center-pill {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 6px;
    padding-left: 40px;
    border-radius: 50px;
    gap: 40px;
}

a {
    color: white;
    text-decoration: none;
}

.nav-center-pill a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
}

.nav-right {
    display: flex;
    align-items: center;
}

.partner-btn {
    background-color: #0f2a0f;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'satoshi', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #0f2a0f;
    white-space: nowrap;
}

.partner-btn-mobile {
    display: none;
}

.partner-btn:hover {
    background-color: white;
    color: #0f2a0f;
    border: 1px solid #0f2a0f;
}

.btn-contact {
    background-color: var(--btn-green);
    color: white !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contact:hover {
    background-color: #3e7e31;
}

.hero-map-container {
    position: absolute;
    bottom: -100px;
    left: 250px;
    width: 550px;
    z-index: 2;
    pointer-events: none;
    transform-origin: bottom left;
    transform: rotate(-15deg);
}

.hero-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.5;
    object-fit: contain;
}

#hero {
    position: relative;
    padding: 180px 20px 100px;
    background-color: #0B240B;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    z-index: 1;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
}

.hero-content-centered {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(62, 126, 49, 0.3);
    border: 1px solid #3e7e31;
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}

.hero-content-centered h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
}

.hero-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 600px;
}

.hero-cta-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 8px 8px 8px 32px;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta-pill:hover {
    transform: translateY(-3px);
}

.cta-text {
    color: #0f2a0f;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
}

.cta-icon-circle {
    width: 48px;
    height: 48px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(11, 28, 11, 0.8);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.stats-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}

.callout-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 125, 50, 0.3);
    border: 1px solid rgba(46, 125, 50, 0.6);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.glowing-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px #4ade80;
}

.callout-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
}

.hero-left h1 {
    font-size: 47px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 500 !important;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: white;
    color: #0f2a0f;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    transition: transform 0.2s;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    font-size: 14px;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-proof strong {
    margin-right: 10px;
}

.social-proof {
    display: flex;
    align-items: center;
}

.county-icon {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    border: 2px solid #0f2a0f;
    margin-right: -10px;
}

.social-proof p {
    font-size: 14px;
    color: #eee;
    margin-left: 10px;
}

.hero-right {
    flex: 1;
}

.hero-slider-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.hero-slider-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(86, 86, 86, 0.884) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: heroFade 15s infinite;
}

.hero-img:nth-child(1) {
    animation-delay: 0s;
}

.hero-img:nth-child(2) {
    animation-delay: 5s;
}

.hero-img:nth-child(3) {
    animation-delay: 10s;
}

@keyframes heroFade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


.services-section {
    width: 100%;
    background: #5a9e2f;
    padding: 30px 0;
    margin-top: 0;
    border-top: #c7c6c6 3px solid;
}

.services-flex {
    display: flex;
    justify-content: space-between;
}

.service-item {
    flex: 1;
    padding: 0 20px;
    text-align: center;
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #e8f5e9;
}

.trusted-section {
    width: 100%;
    background: #f4f4f4;
    padding: 50px 0 60px;
    text-align: center;
    overflow: hidden;
}

.trusted-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    text-transform: uppercase;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 100px;
    animation: scroll 40s linear infinite;
    padding-left: 0px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #d9d9d9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #555;
    font-family: 'Satoshi', sans-serif;
}

.logo-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.main-blank-section {
    width: 100%;
    min-height: 400px;
    background-color: white;
}

.faq-section {
    width: 100%;
    background: white;
    padding: 20px 0 60px;
    text-align: center;
    position: relative;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    padding-top: 90px;
}

.faq-title {
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-title .green-text {
    color: #4f9d3e;
    font-weight: 700;
}

.faq-subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border: 1px solid #333;
    border-radius: 16px;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin: 0;
    font-family: 'Satoshi', sans-serif;
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.icon-circle i {
    color: white;
    font-size: 14px;
}

.faq-item.active .icon-circle {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 1000px;
    padding: 0 40px 30px;
}

.faq-body p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.faq-footer {
    margin-top: 50px;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.faq-footer a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.faq-footer:hover a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 600;
}

.site-footer {
    width: 100%;
    background-color: #0E2600;
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-small {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    margin-top: 60px;
    font-size: 14px;
    color: #888;
}

.footer-right {
    display: flex;
    gap: 100px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: white;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--accent-green);
}

.email-link {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.footer-watermark-img {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;

    z-index: 1;
    pointer-events: none;
}

#footer-cta {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    text-align: center;
    color: white;

    background-color: var(--bg-dark-green);

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),

        radial-gradient(circle at -10%-15%,
            rgba(90, 158, 47, 0.75) 0%,
            rgba(90, 158, 47, 0.45) 15%,
            rgba(90, 158, 47, 0.18) 28%,
            transparent 48%),

        radial-gradient(circle at 110% 115%,
            rgba(79, 157, 62, 0.85) 0%,
            rgba(79, 157, 62, 0.50) 18%,
            rgba(79, 157, 62, 0.20) 32%,
            transparent 52%);

    background-size:
        60px 60px,
        60px 60px,
        auto,
        auto;
}

#footer-cta .cta-content {
    position: relative;
    z-index: 1;
}

#footer-cta::after {
    top: 75%;
    left: 50%;
    background: radial-gradient(circle, #4f9d3e 0%, transparent 70%);
}


#footer-cta .cta-content {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 125, 50, 0.3);
    border: 1px solid rgba(46, 125, 50, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
}

.cta-phone i {
    font-size: 16px;
}

#footer-cta h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 500;
}

.green-text {
    color: var(--accent-green);
    font-weight: 700;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey);
    margin: 20px 0 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-btn-primary {
    background: white;
    color: var(--bg-dark-green);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 3px solid #3e7e31;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-logo {
    height: 30px;
    margin-bottom: 10px;
}

.modal-header h3 {
    color: #555;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.modal-divider {
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin-bottom: 25px;
}

.modal-group {
    margin-bottom: 20px;
    text-align: left;
}

.modal-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.modal-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    background-color: #f1ffe8;
    font-size: 16px;
    outline: none;
}

.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
    color: #555;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.remember-me input {
    accent-color: #aeea00;
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: #555;
    text-decoration: none;
    font-weight: 700;
}

.modal-btn {
    width: 100%;
    background-color: #387c0e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-btn:hover {
    background-color: #2b600b;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f2a0f;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.counter {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 34px;
    position: relative;
}

.counter::before,
.counter::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 2;
    pointer-events: none;
}

.counter::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(10, 30, 10, 1), rgba(10, 30, 10, 0));
}

.counter::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 30, 10, 1), rgba(10, 30, 10, 0));
}

.digit {
    position: relative;
    width: 22px;
    height: 34px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);
}

.digit-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
    color: #fff;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 768px) {

    .container,
    .nav-container {
        padding: 0 20px;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .hamburger {
        display: block;
    }

    .nav-center-pill {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        gap: 15px;
        align-items: center;
    }

    .nav-center-pill.active {
        display: flex;
    }

    .nav-right {
        display: none;
    }

    .partner-btn-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 5px;
        color: #ffffff !important;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        gap: 40px;
    }

    .hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-right {
        width: 100%;
        margin-top: 20px;
    }

    .image-placeholder {
        height: 300px;
        width: 100%;
    }

    .social-proof {
        justify-content: center;
    }

    .services-flex {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-legal-links {
        width: 100%;
        align-items: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column h4 {
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-column ul {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column ul li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-column ul li a {
        justify-content: center;
    }
}

html {
    font-size: clamp(14px, 1vw, 16px);
}

.container,
.nav-container,
.hero-content {
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
}

.hero-left h1 {
    font-size: clamp(28px, 5vw, 47px);
}

.hero-subtext {
    font-size: clamp(14px, 2.5vw, 16px);
}

.callout-text {
    font-size: clamp(12px, 2vw, 14px);
}

.btn-primary,
.btn-secondary,
.cta-btn-primary,
.cta-btn-secondary {
    padding: clamp(12px, 2.5vw, 16px) clamp(18px, 4vw, 32px);
    font-size: clamp(14px, 2.5vw, 16px);
}

.image-placeholder {
    height: auto;
    min-height: clamp(220px, 35vw, 400px);
}

.service-item {
    min-width: clamp(220px, 40vw, 300px);
}

.footer-right {
    flex-wrap: wrap;
    gap: clamp(30px, 6vw, 100px);
}

.footer-column {
    min-width: 180px;
}

.faq-header {
    padding: clamp(20px, 4vw, 30px) clamp(20px, 5vw, 40px);
}

.faq-body p {
    font-size: clamp(14px, 2.5vw, 16px);
}

.cta-large {
    padding: clamp(14px, 3vw, 18px) clamp(26px, 6vw, 40px);
    font-size: clamp(16px, 3vw, 20px);
}

#footer-cta h2 {
    font-size: clamp(26px, 5vw, 42px);
}

.cta-description {
    font-size: clamp(14px, 2.5vw, 16px);
}

@media (max-width: 768px) {

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slider-container {
        height: 300px;
    }

    .btn-primary,
    .btn-secondary,
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

}

.icon-circle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-header h3 {
    flex: 1;
    margin-right: 10px;
}

.current-county .logo-text {
    border-bottom: 3px solid #4f9d3e;
    padding-bottom: 4px;
}
.trust-section {
    padding: 80px 0 60px;
    background-color: white;
    text-align: center;
}

.trust-header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-subtitle {
    font-size: 14px;
    color: #555;
    font-family: 'Satoshi', sans-serif;
}

.trust-btn {
    background-color: #7DBA66;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(125, 186, 102, 0.4);
}

.trust-btn:hover {
    transform: translateY(-2px);
}

.trust-headline {
    font-size: 45px;
    line-height: 1.1;
    color: #1a1a1a;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.trust-headline .green-text {
    color: #4f9d3e;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    height: 350px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 5px solid rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card h3 {
    font-size: 16px;
    color: #0f2a0f;
    font-weight: 700;
}

/* Specific Colors from Image */
.card-1 { background-color: #9FC383; }
.card-2 { background-color: #5D9135; }
.card-2 h3 { color: white; }
.card-3 { background-color: #84A790; }
.card-4 { background-color: #6FF7A5; }


.partnership-ticker-section {
    background: white;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.ticker-label {
    font-size: 12px;
    color: #387c0e;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Satoshi', sans-serif;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 60s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-size: 13px;
    color: #666;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .trust-headline {
        font-size: 32px;
    }
    .trust-grid {
        flex-direction: column;
    }
    .trust-card {
        height: 200px;
    }
}
.best-works-section {
    position: relative;
    background-color: #f0fdf4;
    padding: 100px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.bg-watermark {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 180px;
    color: rgba(79, 157, 62, 0.08);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    font-style: italic;
}

.works-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.works-left {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.card-stack-wrapper {
    position: relative;
    width: 400px;
    height: 300px;
}

.work-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 24px;
}

.pos-1 {
    background-color: #509e33; 
    z-index: 3;
    transform: translateX(0) translateY(0) rotate(0deg);
    color: white;
}

.pos-2 {
    background-color: #8cc672; 
    z-index: 2;
    transform: translateX(-20px) translateY(15px) rotate(-3deg);
}

.pos-3 {
    background-color: #7ee096;
    z-index: 1;
    transform: translateX(-40px) translateY(30px) rotate(-6deg);
}

.pos-out {
    transform: translateX(150%) rotate(20deg);
    opacity: 0;
}

.works-right {
    flex: 1;
    max-width: 500px;
}

.works-right h2 {
    font-size: 48px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.works-right p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.works-btn {
    background: transparent;
    border: 1px solid #4f9d3e;
    color: #1a1a1a;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s ease;
}

.works-btn:hover {
    background-color: #4f9d3e;
    color: white;
}

@media (max-width: 900px) {
    .works-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .card-stack-wrapper {
        width: 300px;
        height: 220px;
    }

    .bg-watermark {
        font-size: 100px;
    }
}
.values-section {
    padding: 100px 0;
    background-color: white;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.values-header {
    text-align: center;
    margin-bottom: 70px;
}

.values-header h2 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}

.values-header h2 .green-text {
    color: #4f9d3e;
}

.values-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.value-card {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.value-icon-box {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #a8f58e; 
    border: 2px solid #2e7d32;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0f2a0f;
    box-shadow: 0 8px 0 #2e7d32; 
    transition: transform 0.2s;
}

.value-card:hover .value-icon-box {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #2e7d32;
}

.value-content {
    padding-top: 5px;
    border-left: 2px solid #4f9d3e;
    padding-left: 20px;
}

.value-content h3 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 900px) {
    .values-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .value-card {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .value-content {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #4f9d3e;
        padding-top: 20px;
    }
}
.partners-network-section {
    padding: 100px 0;
    background-color: #e8f5e9;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.network-header {
    text-align: center;
    margin-bottom: 60px;
}

.network-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}

.network-header h2 .green-text {
    color: #2e7d32;
}

.network-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.network-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.network-left {
    flex: 1;
}

.network-left h3 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.network-left p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.network-controls {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.nav-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #2e7d32;
    color: #2e7d32;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: #2e7d32;
    color: white;
}

.network-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partner-item {
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.partner-item.active {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.p-icon-box {
    width: 80px;
    background-color: #dcedc8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #33691e;
    transition: background 0.3s;
}

.partner-item.active .p-icon-box {
    background-color: #00e222;
    color: #1a1a1a;
}

.p-text-box {
    flex: 1;
    background: #e1eedd; 
    padding: 25px;
    font-weight: 700;
    color: #555;
    font-family: 'Satoshi', sans-serif;
    border: 1px solid transparent;
    transition: background 0.3s, color 0.3s;
}

.partner-item.active .p-text-box {
    background: white;
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .network-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .network-left {
        text-align: center;
    }
    .network-controls {
        justify-content: center;
    }
}