@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --dark-green: #1A4314;
    --forest-green: #2B6123;
    --sage-green: #739072;
    --mint-green: #D1E2C4;
    --off-white: #F9F9F9;
    --text-dark: #333333;
    --text-light: #F9F9F9;
    --accent-gold: #c9a45d;
    
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;

    --container-width: 1140px;
    --border-radius: 12px;
}

/* --- Reset & Base Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark-green);
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 50px;
    color: #555;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--forest-green);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    color: var(--text-light);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-secondary:hover {
    background-color: var(--dark-green);
    color: var(--text-light);
    text-decoration: none;
}

/* --- Header --- */
.main-header {
    background-color: rgba(249, 249, 249, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mint-green);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg text {
    font-family: var(--font-heading);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-green);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sage-green);
    transition: width 0.3s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover { text-decoration: none; }

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-green);
    cursor: pointer;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-green);
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232B6123" fill-opacity="0.3" d="M0,160L48,170.7C96,181,192,203,288,202.7C384,203,480,181,576,154.7C672,128,768,96,864,101.3C960,107,1056,149,1152,160C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-decoration::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,50 C25,25 40,75 50,50 C60,25 75,75 100,50 L100,100 L0,100 Z" fill="%231A4314"></path></svg>') repeat-x;
    background-size: 100px 50px;
    opacity: 0.1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    color: var(--mint-green);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--sage-green);
}
.footer-column a:hover {
    color: var(--off-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    position: relative; 
    z-index: 1;
}

.leaf-separator {
    width: 80px;
    height: 2px;
    background-color: var(--sage-green);
    margin: 0 auto 20px;
    position: relative;
}

.leaf-separator::before {
    content: '🌿'; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--dark-green);
    padding: 0 10px;
    color: var(--sage-green);
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    background-color: #f4f7f2;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--forest-green);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image-container {
    flex: 1;
    position: relative;
}

.hero-blob {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    clip-path: polygon(79% 0, 100% 41%, 95% 79%, 71% 100%, 32% 100%, 0 76%, 0 28%, 26% 0);
}

.hero-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leaf-decoration {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,0 C20,20 20,80 50,100 C80,80 80,20 50,0 Z M50,10 C70,30 70,70 50,90 C30,70 30,30 50,10 Z" fill="%23D1E2C4"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
}

.leaf-1 { width: 80px; height: 80px; top: -20px; left: -30px; transform: rotate(-30deg); }
.leaf-2 { width: 60px; height: 60px; bottom: -10px; right: -20px; transform: rotate(45deg); }

/* --- Philosophy Quote Section --- */
.philosophy-quote {
    background-color: var(--off-white);
    text-align: center;
}

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--dark-green);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-size: 8rem;
    color: var(--mint-green);
    font-family: var(--font-heading);
    position: absolute;
    line-height: 1;
}

.quote-start { top: -40px; left: -50px; }
.quote-end { bottom: -60px; right: -50px; }

.philosophy-quote cite {
    display: block;
    margin-top: 30px;
    font-weight: 600;
    color: var(--sage-green);
}

/* --- Services Preview --- */
.services-preview {
    background-color: #f4f7f2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--sage-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card a {
    font-weight: 600;
}

/* --- About Preview --- */
.about-preview .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image-container {
    flex-basis: 45%;
}

.about-blob {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1.1;
    clip-path: polygon(0 31%, 23% 0, 78% 0, 100% 32%, 100% 75%, 72% 100%, 25% 100%, 0 74%);
}

.about-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex-basis: 55%;
}

/* --- Process Section --- */
.process {
    background-color: #f4f7f2;
}

.process-path {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}

.process-path::before {
     content: '';
    position: absolute;
    top: 60px; /* Aligns with the middle of the icon */
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--sage-green), var(--sage-green) 5px, transparent 5px, transparent 10px);
}

.process-step {
    text-align: center;
    width: 23%;
    position: relative;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--sage-green);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--off-white);
    box-shadow: 0 0 0 3px var(--sage-green);
    position: relative;
}

.step-icon::after {
    content: '🍃';
    font-size: 20px;
    position: absolute;
    top: -25px;
    transform: rotate(20deg);
}

.process-step h4 { margin-top: 30px; }

/* --- Statistics Section --- */
.statistics {
    background-color: var(--mint-green);
}

.statistics .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    margin: 20px;
}

.stat-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-green);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    border: 5px solid var(--off-white);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-circle {
    transform: scale(1.05);
}

.stat-item p {
    font-weight: 600;
    color: var(--forest-green);
    max-width: 180px;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-bubble {
    background-color: #f4f7f2;
    padding: 30px;
    border-radius: 20px 20px 0 20px;
    position: relative;
    border: 1px solid var(--mint-green);
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid #f4f7f2;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.05));
}

.testimonial-bubble p {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-bubble cite {
    font-weight: 600;
    color: var(--forest-green);
}

/* --- FAQ Preview --- */
.faq-preview {
    background-color: var(--off-white);
}
.faq-preview .btn-secondary { margin-top: 40px; display: inline-block; transform: translateX(50%); left: -50%; position: relative; }

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--mint-green);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-green);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--sage-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
    padding: 0 0 20px 0;
}

/* --- CTA Section --- */
.cta {
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    color: var(--text-light);
    padding: 120px 0 80px;
    position: relative;
}
.cta-wave{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.cta-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.cta-wave .shape-fill {
    fill: var(--off-white); 
}

.cta .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.cta-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--off-white);
}

.cta-title {
    color: var(--off-white);
    font-size: 2.8rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta .btn-primary {
    background-color: var(--off-white);
    color: var(--dark-green);
}

.cta .btn-primary:hover {
    background-color: var(--mint-green);
}

/* --- Shared Page Styles (About, Services, Contact, Legal) --- */
.page-header {
    background-color: var(--mint-green);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 { margin-bottom: 10px; }

.service-detailed, .about-content-section, .values-section, .team-section, .office-section, .contact-form-section, .map-section, .legal-content, .not-found-section {
    padding: 80px 0;
}

.legal-content h2, .legal-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content p, .legal-content ul li {
    margin-bottom: 15px;
}

/* --- Services Page --- */
.service-detailed:nth-child(odd) {
    background-color: #f4f7f2;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.service-detailed ul {
    list-style: '🌿 ';
    padding-left: 25px;
    margin-top: 20px;
}

.service-detailed ul li {
    margin-bottom: 10px;
    padding-left: 10px;
}

/* --- About Page --- */
.about-flex-container {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-text-block { flex: 1.2; }
.about-image-block { flex: 1; }
.about-image-block img { border-radius: var(--border-radius); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.value-card { text-align: center; }
.value-icon { font-size: 3rem; margin-bottom: 15px; }

.team-section .team-member {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}
.team-member.reverse { flex-direction: row-reverse; }
.team-photo { width: 300px; height: 300px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 10px var(--mint-green); }
.team-member-info { flex: 1; }

.office-section { text-align: center; }
.office-section p { max-width: 800px; margin: 0 auto 30px; }
.office-image { border-radius: var(--border-radius); }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-info-container { padding: 30px; background-color: #f4f7f2; border-radius: var(--border-radius); }
.contact-image { border-radius: var(--border-radius); margin-bottom: 20px; }
.contact-info-item { margin-bottom: 20px; }
.contact-info-item strong { display: block; color: var(--dark-green); }

.map-section { background-color: #f4f7f2; }
.map-container { border-radius: var(--border-radius); overflow: hidden; }

/* --- 404 Page --- */
.not-found-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}
.not-found-content { position: relative; }
.not-found-title { font-size: 10rem; color: var(--mint-green); line-height: 1; }
.not-found-subtitle { font-size: 2.5rem; margin-top: -20px; margin-bottom: 20px; }
.not-found-content p { max-width: 500px; margin: 0 auto 30px; }
.leaf-404-1 { width: 100px; height: 100px; top: 0; left: 20%; transform: rotate(15deg); opacity: 0.5; }
.leaf-404-2 { width: 80px; height: 80px; top: 50%; right: 15%; transform: rotate(-30deg); opacity: 0.5; }

/* --- Responsive --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-title { font-size: 3rem; }

    .process-path { flex-direction: column; gap: 40px; }
    .process-path::before { display: none; }
    .process-step { width: 100%; }

    .about-preview .container, .team-section .team-member, .team-section .team-member.reverse {
        flex-direction: column;
        text-align: center;
    }
    .about-blob, .team-photo { margin: 0 auto 30px; }

    .cta .container { flex-direction: column; text-align: center; }
    .cta-image { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }

    .main-nav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--off-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .main-nav.active { display: flex; }
    .nav-list { flex-direction: column; gap: 15px; align-items: center; }
    .mobile-nav-toggle { display: block; }

    .hero .container { flex-direction: column-reverse; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-blob { max-width: 350px; }

    .quote-start { left: 0; }
    .quote-end { right: 0; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-container { grid-row: 1; }
}

/* Disclaimer */
.footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
.cookie-banner.show { bottom: 0; }
.cookie-banner__content { text-align: center; max-width: 600px; font-size: 0.9rem; color: #333; }
.cookie-banner__content a { color: var(--color-primary, #007bff); }
.cookie-banner__actions { display: flex; gap: 1rem; }
.cookie-banner__actions button { 
    padding: 0.75rem 1.5rem; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 0.9rem; 
    transition: all 0.3s ease; 
}
.cookie-banner__actions button:first-child { background: var(--color-primary, #007bff); color: white; }
.cookie-banner__actions button:last-child { background: #f0f0f0; color: #333; }
@media (max-width: 768px) { .cookie-banner { flex-direction: column; text-align: center; } }
