/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    line-height: 1.5;
    background: #FCFDF8;
    color: #143314;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    font-smooth: always;
}
img {
    max-width: 100%;
    display: block;
}
input, button, textarea, select {
    font: inherit;
}
ul, ol {
    list-style: none;
    padding-left: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    font-weight: 600;
}

/* === BRAND COLORS === */
:root {
    --primary: #255D27;
    --primary-darker: #19441A;
    --secondary: #A3C293;
    --secondary-light: #DAF6C4;
    --accent: #DBC89A;
    --accent-dark: #B89538;
    --electric-green: #23D160; /* Vibrant effect accent */
    --electric-yellow: #FDBD00;
    --electric-pink: #FF46A1;
    --white: #FCFDF8;
    --gray: #F3F4EC;
    --shadow: rgba(37,93,39,0.07);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px var(--accent);
    text-wrap: balance;
}
h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.375rem;
    margin-bottom: 10px;
}
h4, h5, h6 {
    font-size: 1.125rem;
}
p, ul, ol, li, address, blockquote {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #174120;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
}
strong {
    color: var(--primary);
    font-weight: 700;
}

/* === LAYOUT & SPACING === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section, .features, .services, .about-home, .about-values, .team, .testimonials, .service-highlight, .call-to-action, .cta, .map, .privacy-hint, .legal, .confirmation, .contact-info {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--gray);
    border-radius: 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-section {
    max-width: 800px;
    margin: 0 auto;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 2px 16px var(--shadow), 0 8px 40px 0 rgba(37,93,39,0.08);
    margin-bottom: 20px;
    position: relative;
    padding: 28px 24px;
    transition: box-shadow 0.2s;
    min-width: 250px;
    flex: 1 1 240px;
    min-height: 180px;
}
.card:hover {
    box-shadow: 0 6px 24px var(--electric-green), 0 14px 50px 0 rgba(37,93,39,0.17);
}

.content-grid, .feature-grid, .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 3px 16px var(--shadow);
    padding: 24px 20px 26px 20px;
    min-width: 240px;
    flex: 1 1 220px;
    margin-bottom: 20px;
    transition: box-shadow 0.16s, transform 0.14s;
}
.feature-item img {
    height: 46px;
    object-fit: contain;
}
.feature-item:hover {
    transform: translateY(-3px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 36px 0 var(--electric-pink);
}

.hero {
    background: linear-gradient(98deg, var(--electric-green) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: var(--primary-darker);
    margin-bottom: 0;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
}
.hero .content-wrapper {
    align-items: flex-start;
    padding-top: 46px;
    gap: 14px;
}
.hero h1 {
    color: var(--primary-darker);
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 2px 0 var(--accent-dark), 0 9px 32px var(--white);
}

.call-to-action, .cta {
    background: var(--electric-yellow);
    color: var(--primary);
    border-radius: 28px;
}

.confirmation {
    background: var(--secondary-light);
    text-align: center;
    border-radius: 28px;
}

/* === NAVIGATION === */
header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 8px 18px -10px #14331433;
}
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    background: none;
}
.main-navigation > a img {
    height: 48px;
    margin-right: 12px;
}
.main-navigation ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}
.main-navigation li {
    display: flex;
}
.main-navigation a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    padding: 5px 0;
    letter-spacing: 0.02em;
    border-bottom: 2px solid transparent;
    transition: color 120ms, border-bottom 150ms;
}
.main-navigation a:hover,
.main-navigation .cta-header:hover {
    color: var(--electric-yellow);
    border-bottom: 2px solid var(--electric-pink);
}
.cta-header {
    background: var(--electric-pink);
    color: var(--white);
    font-weight: 900;
    letter-spacing: 0.01em;
    padding: 10px 22px;
    border-radius: 18px;
    margin-left: 18px;
    box-shadow: 0 2px 8px var(--accent-dark);
    transition: background 0.15s, color 0.13s, box-shadow 0.1s;
    border: none;
    display: inline-block;
}
.cta-header:focus,
.cta-header:hover {
    background: var(--secondary);
    color: var(--primary-darker);
    box-shadow: 0 6px 24px var(--electric-green);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 301;
    background: var(--electric-pink);
    color: var(--white);
    font-size: 2.2rem;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: var(--primary-darker);
    color: var(--electric-yellow);
}
.mobile-menu {
    position: fixed;
    z-index: 400;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    transform: translateX(-100vw);
    transition: transform 0.33s cubic-bezier(0.81,0.34,0.27,1.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 16px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    right: 28px;
    top: 22px;
    background: var(--electric-pink);
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 420;
    border: none;
    transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: var(--electric-yellow);
    color: var(--primary);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 100px;
    width: 100%;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    padding: 14px 10px;
    margin: 0 8px;
    border-radius: 10px;
    background: none;
    transition: background 0.14s, color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    background: var(--secondary);
    color: var(--primary);
}

/* === HERO CTA BUTTON === */
.cta-main {
    background: var(--electric-green);
    color: #153914;
    border-radius: 20px;
    font-weight: 800;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.22rem;
    letter-spacing: 0.01em;
    padding: 16px 38px;
    margin-top: 24px;
    margin-bottom: 8px;
    box-shadow: 0 3px 24px var(--secondary);
    transition: background 0.18s, color 0.13s, transform 0.15s, box-shadow 0.17s;
    display: inline-block;
    border: none;
}
.cta-main:focus,
.cta-main:hover {
    background: var(--electric-pink);
    color: var(--white);
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 9px 32px var(--accent-dark);
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--white);
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 30px 0 var(--shadow);
}
.testimonials .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--secondary-light);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px 0 var(--secondary);
    position: relative;
    min-width: 240px;
    transition: box-shadow 0.15s, background 0.18s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 24px var(--electric-green);
    background: var(--secondary);
}
.testimonial-card blockquote {
    font-size: 1.12rem;
    font-style: italic;
    color: #1E3121;
    margin: 0 12px 0 0;
    line-height: 1.5;
}
.testimonial-card p {
    font-size: 1rem;
    color: #223423;
    font-weight: 700;
    margin-bottom: 0;
}

/* === FOOTER === */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 0;
    margin-top: 40px;
    width: 100vw;
    position: relative;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 44px 0 28px 0;
    width: 100%;
}
.footer-brand img {
    width: 48px;
    margin-bottom: 14px;
}
.footer-brand p {
    color: var(--accent);
    font-size: 1rem;
}
.footer-nav ul, .legal-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a, .legal-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.13s;
}
.footer-nav a:hover, .legal-nav a:hover {
    color: var(--electric-yellow);
}
.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}
.footer-social a img {
    width: 36px;
    height: 36px;
    filter: brightness(98%) drop-shadow(0px 3px 2px var(--accent-dark));
    transition: filter 0.14s, transform 0.13s;
}
.footer-social a:hover img {
    filter: brightness(140%) drop-shadow(0px 8px 15px var(--electric-green));
    transform: scale(1.12) rotate(8deg);
}
.footer-bottom {
    text-align: center;
    background: var(--primary-darker);
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--accent);
    letter-spacing: 0.01em;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: var(--accent);
    color: var(--primary-darker);
    box-shadow: 0 -8px 28px -8px #255D2733;
    z-index: 600;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 1.1rem;
    transition: transform 0.33s cubic-bezier(0.7,0.28,0.27,1.04);
}
.cookie-consent-banner.hide {
    transform: translateY(140%);
}
.cookie-consent-actions {
    display: flex;
    gap: 10px;
}
.cookie-consent-banner button {
    padding: 8px 22px;
    border-radius: 10px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    margin-left: 3px;
    transition: background 0.16s, color 0.12s;
}
.cookie-accept {
    background: var(--electric-green);
    color: var(--primary-darker);
}
.cookie-accept:hover, .cookie-accept:focus {
    background: var(--primary);
    color: var(--white);
}
.cookie-reject {
    background: var(--electric-pink);
    color: var(--white);
}
.cookie-reject:hover, .cookie-reject:focus {
    background: var(--primary-darker);
    color: var(--accent);
}
.cookie-settings {
    background: var(--secondary);
    color: var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
    background: var(--primary);
    color: var(--white);
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(20,51,20, 0.66);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    transition: background 0.13s;
}
.cookie-modal.open {
    display: flex;
}
.cookie-modal-content {
    background: var(--gray);
    border-radius: 22px;
    padding: 36px 30px 28px 30px;
    min-width: 320px;
    box-shadow: 0 12px 60px 0 var(--accent-dark);
    color: var(--primary);
    max-width: 92vw;
    min-height: 180px;
    position: relative;
    animation: cookie-modal-fadein 0.33s cubic-bezier(0.70,0.32,0.25,0.96);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
@keyframes cookie-modal-fadein {
    from {transform: translateY(40px) scale(0.96); opacity: 0;}
    to {transform: none; opacity: 1;}
}
.cookie-category {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--primary-darker);
}
.cookie-toggle {
    width: 40px; height: 22px;
    border-radius: 12px;
    background: var(--secondary);
    position: relative;
    margin-left: 12px;
    border: 2px solid var(--accent-dark);
    cursor: pointer;
    transition: background 0.14s;
    display: inline-flex;
    align-items: center;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle .slider {
    position: absolute;
    left: 2px; top: 2px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--primary);
    transition: left 0.16s, background 0.15s;
}
.cookie-toggle input:checked + .slider {
    left: 18px;
    background: var(--electric-green);
}
.cookie-modal-actions {
    display: flex;
    gap: 13px;
    margin-top: 26px;
    justify-content: flex-end;
}
.cookie-modal-close {
    position: absolute;
    right: 16px;
    top: 10px;
    background: var(--electric-pink);
    color: var(--white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    border: none;
    text-align: center;
    line-height: 36px;
    transition: background 0.13s;
    cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: var(--electric-yellow);
    color: var(--primary);
}

/* === RESPONSIVE DESIGN (MOBILE-FIRST) === */
@media (max-width: 1080px) {
    .container {
        max-width: 90vw;
        padding: 0 8vw;
    }
    .footer-top {
        gap: 20px;
    }
}
@media (max-width: 900px) {
    .content-grid, .feature-grid, .footer-top {
        flex-direction: column;
        gap: 26px !important;
    }
    .feature-item, .card {
        min-width: 80vw;
        max-width: 95vw;
        margin: 0 auto 20px auto;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.3rem; }
    .main-navigation ul {
        display: none;
    }
    .main-navigation .cta-header {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
    }
    .hero {
        border-radius: 0 0 22px 22px;
        padding: 28px 0;
    }
    .section, .features, .services, .about-home, .about-values, .team, .testimonials, .service-highlight, .call-to-action, .cta, .map, .privacy-hint, .legal, .confirmation, .contact-info {
        padding: 28px 6vw;
        margin-bottom: 38px;
        border-radius: 14px;
    }
    .text-image-section,
    .content-grid, .feature-grid, .footer-top {
        flex-direction: column !important;
        align-items: stretch;
        gap: 18px !important;
    }
    .card, .feature-item {
        min-width: unset;
        width: 100%;
    }
    .footer-brand, .footer-nav, .legal-nav, .footer-social {
        align-items: flex-start;
        align-self: stretch;
        text-align: left;
    }
}
@media (max-width: 540px) {
    .container {
        padding: 0 4vw;
    }
    .section, .features, .services, .about-home, .about-values, .team, .testimonials, .service-highlight, .call-to-action, .cta, .map, .privacy-hint, .legal, .confirmation, .contact-info {
        padding: 18px 2vw;
    }
    footer {
        padding-bottom: 56px;
    }
}

/* === ANIMATIONS AND MICRO-INTERACTIONS === */
.cta-main, .cta-header {
    transition: background 0.17s, color 0.13s, transform 0.15s, box-shadow 0.17s;
}
.cta-main:active, .cta-header:active {
    transform: scale(0.97);
}
.card, .feature-item, .testimonial-card {
    transition: box-shadow 0.17s, background 0.18s, transform 0.15s;
}
.card:active, .feature-item:active, .testimonial-card:active {
    transform: scale(0.99);
}

/* === ACCESSIBILITY and FOCUS VISIBLE === */
a:focus, button:focus, .cta-main:focus, .cta-header:focus {
    outline: 2px dashed var(--electric-green);
    outline-offset: 2px;
}

/* === MISCELLANEOUS === */
::-webkit-scrollbar {
    width: 12px;
    background: var(--gray);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--electric-green);
}

/* === UTILITY CLASSES === */
.mt-32 {margin-top: 32px !important;}
.mb-24 {margin-bottom: 24px !important;}
.text-center {text-align: center !important;}

/* --- END OF VIBRANT ENERGETIC DESIGN --- */