@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-dark: #111111;
    --text-grey: #666666;
    --light-green-bg: #e8f5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;

    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;

    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi', sans-serif;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding-top: 20px;
    width: 100%;
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
}

.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 #246101;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    border: 2px solid #246101;
}

.logo {
    height: 25px;
    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;
}

.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:hover {
    background-color: #5a9e2f;
    color: white;
    border: 1px solid #5a9e2f;
}

.home-btn-mobile {
    display: none;
}

.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;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f2a0f;
}

@media (max-width: 900px) {
    .nav-center-pill {
        display: none;
    }

    .hamburger {
        display: block;
    }

}

.site-footer {
    width: 100%;
    background-color: #0E2600;
    color: white;
    margin-top: 0px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#footer-cta {
    width: 100%;
    background: transparent;
    padding: 80px 20px 40px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#footer-cta h2 {
    font-size: 42px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.green-text {
    color: #5a9e2f;
}

.cta-description {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn-primary {
    background: #4f9d3e;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-btn-primary:hover {
    background: #3e7e31;
}

.cta-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.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;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    margin-top: 0;
    font-size: 14px;
    color: #888;
}

.footer-right {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #5a9e2f;
}

@media (max-width: 768px) {
    #footer-cta h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        gap: 40px;
        width: 100%;
        justify-content: space-between;
    }
}

#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;
}

.partner-hero {
    margin-top: 100px;
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.partner-hero h1 {
    font-family: Satoshi, sans-serif;
    font-size: 60px;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.1;
    white-space: normal;
}

.partner-hero h1 span {
    color: #5a9e2f;
}

.partner-hero p {
    max-width: 760px;
    margin: 0 auto 45px;
    font-size: 18px;
    color: #666;
}

.cta-btn {
    display: inline-block;
    padding: 18px 48px;
    background: #5a9e2f;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease;
    border: 1px solid #5a9e2f;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #5a9e2f;
    border: 1px solid #5a9e2f;
}

.floating-icon {
    position: absolute;
    width: 75px;
    height: 75px;
    background: #6aa84f;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    --tilt: -10deg;
    transform: rotate(var(--tilt));
    animation: explodeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 1;
}

.icon-1 {
    top: 120px;
    left: 5%;
    --x: 40vw;
    --y: 250px;
    --tilt: 10deg;
}

.icon-2 {
    top: 80px;
    right: 5%;
    --x: -40vw;
    --y: 250px;
}

.icon-3 {
    bottom: 60px;
    right: 8%;
    --x: -35vw;
    --y: -250px;
    --tilt: 10deg;
}

.icon-4 {
    bottom: 40px;
    left: 8%;
    --x: 35vw;
    --y: -250px;
}

@keyframes explodeIn {
    0% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(0) rotate(90deg);
    }

    70% {
        opacity: 1;
        transform: translate(0, 0) scale(1.1) rotate(var(--tilt));
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(var(--tilt));
    }
}

@media (max-width: 768px) {
    .partner-hero h1 {
        font-size: clamp(28px, 6vw, 36px);
        white-space: nowrap;
    }

    .partner-hero p {
        font-size: 16px;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        border-radius: 8px;
        opacity: 0.6 !important;
    }

    .icon-1 {
        top: 120px;
        left: 2%;
    }

    .icon-2 {
        top: 100px;
        right: 2%;
    }

    .icon-3 {
        bottom: 20px;
        right: 5%;
    }

    .icon-4 {
        bottom: 40px;
        left: 5%;
    }
}

.partners {
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: #EEFFE4;
    border-top: 1px solid rgb(130, 130, 130);
    border-bottom: 1px solid rgb(130, 130, 130);
}

.partners-title {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Satoshi', sans-serif;
}

.partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollPartners 60s linear infinite;
    opacity: 0.8;
}

.partners-track span {
    font-size: 20px;
    font-weight: 600;
    color: #454545;
    white-space: nowrap;
    font-family: 'Satoshi', sans-serif;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.image-gallery-section {
    padding: 60px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    background-color: #9dc4831c;
}

.gallery-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.gallery-header h2 {
    font-family: Satoshi, sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #111;
}

.gallery-header h2 span {
    color: var(--accent-green);
}

.gallery-header p {
    font-size: 16px;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

.image-gallery {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 45s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-group {
    display: flex;
    gap: 30px;
}

.stacked-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.gallery-card {
    background-color: #f1f8e9;
    border: 2px solid #dcedc8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-small {
    width: 280px;
    height: 180px;
}

.card-large {
    width: 560px;
    height: 390px;
}

.gallery-img-inset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.news-section {
    padding: 80px 0;
    background-color: transparent;
}

.news-title {
    text-align: center;
    font-family: 'Satoshi', sans-serif;
    font-size: 42px;
    color: #111;
    margin-bottom: 50px;
    margin-top: 50px;
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #9c9c9c;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 200px;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #5a9e2f;
}

.news-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-content h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-content p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5a9e2f;
    font-weight: 700;
}

.news-meta2 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #090909;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    margin-top: 20px;
}

.news-meta2 a:hover {
    color: #5a9e2f;
    background-color: #ffffff;
    border: 1px solid #5a9e2f;
}

.news-meta2 a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #090909;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    margin-top: 20px;
    background-color: #00900060;
    padding: 8px 14px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
    border: 1px solid #00900060;
}

.news-image {
    width: 250px;
    flex-shrink: 0;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.news-btn {
    align-self: flex-start;
    margin-top: 15px;
    padding: 8px 24px;
    background-color: transparent;
    border: 1px solid #5a9e2f;
    color: #5a9e2f;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background-color: #5a9e2f;
    color: white;
}

@media (max-width: 900px) {
    .news-card {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .news-image {
        width: 100%;
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 32px;
    }

    .news-content h3 {
        font-size: 20px;
    }

    .news-content p {
        font-size: 14px;
    }
}

.faq-section {
    width: 100%;
    background: transparent;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    border-top: none;
    color: #333;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.faq-subtitle {
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #4ade80;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.15);
}

.faq-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.faq-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'Satoshi', sans-serif;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 12px;
    color: #333;
    transition: transform 0.3s ease;
}

.faq-item.active .icon-circle {
    background: #4ade80;
}

.faq-item.active .icon-circle i {
    transform: rotate(180deg);
    color: white;
}

.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 30px 30px;
}

.faq-body p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.faq-footer {
    margin-top: 50px;
    color: #666;
    font-size: 14px;
}

.faq-footer a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.faq-footer a:hover {
    color: #4ade80;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.gallery-header h2 {
    font-size: 40px;

}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.split-layout-section {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.split-container {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #c7c7c7;
}

.left-panel {
    width: 40%;
    background-color: #0f2a0f;
    color: white;
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.panel-content h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.panel-desc {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #cfcfcf;
}

.info-item i {
    color: #5a9e2f;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.social-links a:hover {
    background: #5a9e2f;
    transform: translateY(-3px);
}

.decorative-circles {
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: 0;
    pointer-events: none;
}

.circle {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    position: absolute;
}

.circle-1 {
    width: 150px;
    height: 150px;
    bottom: 0;
    right: 0;
}

.circle-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -50px;
}

.right-panel {
    width: 60%;
    padding: 50px;
    background: #eeffe467;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border 0.3s;
    background: transparent;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 2px solid #5a9e2f;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
    transition: 0.2s;
}

.radio-container:hover input~.checkmark {
    background-color: #ccc;
}

.radio-container input:checked~.checkmark {
    background-color: #5a9e2f;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.submit-btn {
    background-color: #5a9e2f;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(90, 158, 47, 0.3);
}

.submit-btn:hover {
    background-color: #4f9d3e;
    transform: translateY(-2px);
}

.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);
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }

    .left-panel {
        padding: 40px;
    }

    .right-panel {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.floating-icon {
    position: absolute;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    animation: iconSlideIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.icon-rotator {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    animation: iconRotateIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.icon-shape {
    width: 75px;
    height: 75px;
    background: #6aa84f;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    box-shadow: none;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: max-content;
    max-width: 240px;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.icon-1 .info-box,
.icon-4 .info-box {
    left: 20px;
}

.icon-2 .info-box,
.icon-3 .info-box {
    right: 20px;
}

.info-title {
    font-weight: 700;
    font-size: 14px;
    color: #0f2a0f;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 4px;
    line-height: 1.2;
}

.info-text {
    font-size: 12px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.floating-icon:hover .icon-shape {
    transform: scale(1.15);
}

.floating-icon:hover .info-box {
    opacity: 1;
    pointer-events: auto;
}

.icon-1:hover .info-box,
.icon-4:hover .info-box {
    left: 90px;
}

.icon-2:hover .info-box,
.icon-3:hover .info-box {
    right: 90px;
}

@keyframes iconSlideIn {
    0% {
        opacity: 0;
        transform: translate(var(--x), var(--y));
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes iconRotateIn {
    0% {
        transform: scale(0) rotate(90deg);
    }

    70% {
        transform: scale(1.1) rotate(var(--tilt));
    }

    100% {
        transform: scale(1) rotate(var(--tilt));
    }
}

.icon-1 {
    top: 120px;
    left: 5%;
    --x: 40vw;
    --y: 250px;
    --tilt: 10deg;
}

.icon-2 {
    top: 80px;
    right: 5%;
    --x: -40vw;
    --y: 250px;
    --tilt: -10deg;
}

.icon-3 {
    bottom: 60px;
    right: 8%;
    --x: -35vw;
    --y: -250px;
    --tilt: 10deg;
}

.icon-4 {
    bottom: 40px;
    left: 8%;
    --x: 35vw;
    --y: -250px;
    --tilt: -5deg;
}
.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;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    padding: 40px 50px;
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    position: relative;
    border: 2px solid #4f9d3e;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.modal-logo {
    height: 28px;
    margin-bottom: 15px;
}

.modal-header h3 {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    font-family: 'Satoshi', sans-serif;
}

.modal-divider {
    height: 1px;
    background-color: #eee;
    width: 100%;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 60px;
    color: #4f9d3e;
    margin-bottom: 20px;
}

.success-body h2 {
    color: #0f2a0f;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Satoshi', sans-serif;
}

.success-body p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.modal-btn {
    width: 100%;
    background-color: #4f9d3e;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(79, 157, 62, 0.3);
}

.modal-btn:hover {
    background-color: #3e7e31;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
    .floating-icon {
        width: 35px;
        height: 35px;
    }

    .icon-shape {
        width: 35px;
        height: 35px;
        font-size: 16px;
        border-radius: 8px;
    }

    .info-box {
        display: none;
    }

    .icon-1 {
        top: 120px;
        left: 2%;
    }

    .icon-2 {
        top: 100px;
        right: 2%;
    }

    .icon-3 {
        bottom: 20px;
        right: 5%;
    }

    .icon-4 {
        bottom: 40px;
        left: 5%;
    }
}

@media (max-width: 900px) {
    .navbar {
        position: relative;
    }

    .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;
        border: 2px solid transparent;
        border-top: none;
        transition: border 0.3s ease;
    }

    .navbar.scrolled .nav-center-pill {
        border: 2px solid #246101;
        border-top: none;
    }

    .nav-center-pill.active {
        display: flex;
    }

    .nav-center-pill a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .home-btn-mobile {
        display: block;
        width: 100%;
        text-align: center;
        background-color: #0f2a0f;
        color: white !important;
        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;
    }

    .home-btn-mobile:hover {
        background-color: #5a9e2f;
        border: 1px solid #5a9e2f;
    }
}

@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;
    }

    .os-card {
        flex-direction: column;
        height: auto;
        height: 650px !important;
    }

    .os-card-left {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .os-card-right {
        height: 350px !important;
        width: 100%;
        padding: 20px;
    }

    .comparison-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .card {
        width: 100%;
    }

    .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;
    }

    .about-content-box {
        padding: 30px 20px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 30px;
    }

}

.partners-wrapper {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .partners-track {
        gap: 30px;
    }

    .partners-track span {
        font-size: 16px;
    }
}

#message {
    min-height: 120px;
    resize: vertical;
}