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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2d7a3e;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #236530;
}

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #2a2a2a;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a3e;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2d7a3e;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #2d7a3e;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

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

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.7;
}

.hero-image {
    max-width: 1400px;
    margin: 2rem auto 0;
    width: 100%;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Intro Section */
.intro-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Visual Break - Split Layout */
.visual-break {
    background: #2d7a3e;
    color: #ffffff;
    padding: 0;
}

.split-layout {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-image,
.split-text {
    flex: 1;
}

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

.split-text {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

/* Services Section */
.services-preview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #2d7a3e;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a3e;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #2d7a3e;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #236530;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #2d7a3e;
    color: #ffffff;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #236530;
}

/* Trust Section */
.trust-section {
    padding: 5rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #d0d0d0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d7a3e;
}

/* CTA Sections */
.cta-bottom,
.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d7a3e 0%, #1e5429 100%);
    color: #ffffff;
    text-align: center;
}

.cta-bottom h2,
.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-bottom p,
.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.cta-primary {
    background: #ffffff;
    color: #2d7a3e;
}

.cta-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #2d7a3e;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-col a {
    color: #d0d0d0;
    transition: color 0.3s ease;
}

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

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

/* Page Hero */
.page-hero {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Content Section */
.content-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.content-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.content-section p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-item {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d7a3e;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-section p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Production Section */
.production-section {
    padding: 6rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
}

.production-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.production-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.production-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.production-image img {
    width: 100%;
    border-radius: 12px;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.service-detail-content {
    padding: 3rem 2rem;
}

.service-detail h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a3e;
    margin: 1rem 0 1.5rem;
}

.service-description {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-detail h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.service-specs {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-specs li {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Pricing Notes */
.pricing-notes {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.pricing-notes h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.pricing-notes p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.contact-item {
    flex: 1 1 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 50%;
    color: #2d7a3e;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2d7a3e;
    font-weight: 600;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 1rem;
}

/* Contact Text Section */
.contact-text-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-text-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.contact-text-section p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.contact-checklist li {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.map-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    background: #e5e5e5;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #4a4a4a;
    font-size: 1.125rem;
}

/* Thanks Section */
.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d7a3e;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}

.thanks-section h2 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
}

.next-steps {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

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

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Legal Section */
.legal-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.legal-section h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-intro {
    color: #6a6a6a;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2d7a3e;
}

.legal-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: #2d7a3e;
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .split-layout {
        flex-direction: column;
    }

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

    .split-text {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-detail {
        margin-bottom: 3rem;
    }

    .service-detail-image img {
        height: 300px;
    }

    .production-info {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

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

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .split-layout {
        flex-direction: row;
    }

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

    .split-image {
        min-height: 500px;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-content,
    .service-detail-image {
        flex: 1;
    }

    .production-info {
        flex-direction: row;
        align-items: center;
    }

    .production-text,
    .production-image {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        margin-top: 0;
    }
}