/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e30;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #4a7c59;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6ba07a;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #1a2820;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Navigation */
.nav-main {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e9e6;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2820;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    color: #2c3e30;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4a7c59;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e30;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2820;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #6ba07a;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    padding: 4rem 6%;
    background-color: #f8faf9;
}

.hero-text {
    max-width: 600px;
}

.hero-right {
    padding: 0;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Split Container (Reusable 50/50 Layout) */
.split-container {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left {
    background-color: #ffffff;
}

.split-content-right {
    background-color: #f8faf9;
}

.split-image-left,
.split-image-right {
    flex: 1;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-form-right {
    flex: 1;
    padding: 5rem 6%;
    background-color: #f8faf9;
    display: flex;
    align-items: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-submit,
.btn-sticky {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6ba07a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    background-color: #2c3e30;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #3d5542;
}

.btn-outline {
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.btn-outline:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-submit {
    background-color: #4a7c59;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background-color: #6ba07a;
}

/* Service Cards and Buttons */
.btn-service {
    background-color: #4a7c59;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #6ba07a;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    background-color: #4a7c59;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(74, 124, 89, 0.4);
}

.btn-sticky:hover {
    background-color: #6ba07a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 124, 89, 0.5);
}

/* Sections */
.services-intro,
.process-section,
.case-study,
.why-choose,
.testimonials,
.regional-work {
    padding: 5rem 0;
}

.services-pricing {
    padding: 5rem 0;
    background-color: #f8faf9;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-intro {
    font-size: 1.15rem;
    color: #5a6d5f;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Labels */
.label,
.service-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a7c59;
    margin-bottom: 1rem;
}

/* Process List */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-item h3 {
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a7c59;
    margin: 1.5rem 0;
}

/* Features Split */
.features-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.feature-item h3 {
    color: #4a7c59;
}

/* Testimonials */
.testimonial-block {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #4a7c59;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e30;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #5a6d5f;
    margin: 0;
}

/* Regional Work */
.regions-content {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.regions-text,
.regions-map {
    flex: 1;
}

.area-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.area-list li {
    margin-bottom: 0.5rem;
}

/* Forms */
.form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.main-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e30;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d8d3;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.form-group textarea {
    resize: vertical;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
}

.member-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-title {
    color: #5a6d5f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Story and Philosophy Sections */
.story-section,
.philosophy-section,
.certifications-section {
    padding: 5rem 0;
}

.story-section {
    background-color: #ffffff;
}

.philosophy-section {
    background-color: #f8faf9;
}

.certifications-section {
    background-color: #ffffff;
}

.cert-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0 1.5rem;
}

.cert-list li {
    margin-bottom: 0.8rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: #f8faf9;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.value-item h3 {
    color: #4a7c59;
}

/* CTA Sections */
.cta-section,
.cta-services {
    padding: 5rem 0;
    text-align: center;
    background-color: #2c3e30;
    color: #ffffff;
}

.cta-section h2,
.cta-services h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p,
.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #d0d8d3;
}

/* Services Detail Pages */
.services-detail {
    padding: 5rem 0;
}

.services-detail.alt {
    background-color: #f8faf9;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a7c59;
    margin: 1rem 0 1.5rem;
}

.service-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
}

/* Pricing Notes */
.pricing-notes {
    padding: 5rem 0;
    background-color: #f8faf9;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.note-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.note-item h3 {
    color: #4a7c59;
    font-size: 1.2rem;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
}

/* Contact Content */
.contact-content {
    padding: 3rem 0;
}

.contact-info-section,
.response-info,
.service-areas,
.before-you-contact,
.additional-info {
    margin-bottom: 4rem;
}

.info-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.info-item {
    flex: 1 1 280px;
}

.info-item h3 {
    color: #4a7c59;
    font-size: 1.2rem;
}

.checklist {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.checklist li {
    margin-bottom: 0.8rem;
}

.contact-cta {
    padding: 5rem 0;
    text-align: center;
    background-color: #f8faf9;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    color: #5a6d5f;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f0f7f3;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-selected {
    color: #4a7c59;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #4a7c59;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
}

.step-text p {
    margin: 0;
}

.thanks-info {
    margin: 3rem 0;
    text-align: center;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.urgent-notice {
    background-color: #fff8e1;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #f9a825;
    text-align: left;
    margin-top: 3rem;
}

.urgent-notice p {
    margin: 0;
}

/* Legal Pages */
.legal-content {
    padding: 5rem 0;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.updated {
    color: #5a6d5f;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d0d8d3;
}

.cookie-table th {
    background-color: #f8faf9;
    font-weight: 600;
    color: #2c3e30;
}

/* Footer */
.footer {
    background-color: #1a2820;
    color: #d0d8d3;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #d0d8d3;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #3d5542;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #9ba89e;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content-left,
    .split-content-right,
    .split-image-left,
    .split-image-right,
    .split-form-right {
        min-height: 400px;
    }

    .hero-right,
    .split-image-left,
    .split-image-right {
        min-height: 350px;
    }

    .regions-content {
        flex-direction: column;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-links {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-left,
    .split-content-left,
    .split-content-right,
    .split-form-right {
        padding: 3rem 1.5rem;
    }

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .feature-item,
    .value-item,
    .note-item {
        flex: 1 1 100%;
    }

    .info-details {
        flex-direction: column;
        gap: 2rem;
    }
}
