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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-gray: #2d3436;
    --medium-gray: #636e72;
    --light-gray: #dfe6e9;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--primary-color);
}

.cta-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

.cta-nav:hover {
    background: var(--secondary-color);
}

/* Split Screen Layout System */
.hero-split,
.feature-split,
.testimonial-split,
.process-split,
.trust-split,
.approach-split,
.philosophy-split,
.team-split,
.directions-split,
.story-split,
.contact-split,
.service-detail-split {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.hero-split {
    min-height: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-image img,
.feature-image img,
.process-image img,
.team-image img,
.directions-image img,
.story-image img,
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Reverse Split Layout */
.reverse {
    flex-direction: row-reverse;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary-large:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1.2rem;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 1rem;
}

.link-arrow::after {
    content: '→';
}

/* Services Grid */
.services-preview {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    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(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Testimonials Split */
.testimonial-split {
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-content footer {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

/* Process Section */
.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Sections */
.cta-full,
.cta-about,
.cta-services {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Forms */
.order-form {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    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: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Trust Section */
.trust-split {
    background: var(--secondary-color);
    color: var(--white);
}

.trust-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer-split {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-gray);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,107,53,0.5);
}

/* About Page Styles */
.values-section {
    padding: 6rem 5%;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.stats-section {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Page Styles */
.services-detailed {
    padding: 4rem 5%;
}

.service-detail-item {
    margin-bottom: 4rem;
}

.service-detail-content {
    max-width: 600px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.pricing-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-examples {
    color: var(--text-medium);
    line-height: 1.7;
}

.price-examples p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.why-us-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 5%;
}

.contact-block {
    max-width: 500px;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.address-info,
.hours-info {
    margin-bottom: 1.5rem;
}

.address-line {
    line-height: 1.8;
    color: var(--text-medium);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-medium);
}

.contact-note {
    margin-top: 1rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.email-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.email-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.email-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.email-container > p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.email-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.email-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.email-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.email-icon svg {
    width: 100%;
    height: 100%;
}

.email-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.email-link {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.email-link:hover {
    text-decoration: underline;
}

.email-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.directions-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.directions-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.transport-info,
.parking-info {
    margin-bottom: 2rem;
}

.transport-info h4,
.parking-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.transport-info ul {
    list-style: none;
}

.transport-info li {
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.visit-section {
    padding: 6rem 5%;
}

.visit-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.visit-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visit-container > p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.visit-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.visit-item {
    flex: 1;
}

.visit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.visit-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.quick-contact {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.quick-contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quick-contact-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-contact-container p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.response-time {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 6rem 5%;
    text-align: center;
    background: var(--bg-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.confirmation-details {
    padding: 4rem 5%;
}

.confirmation-container {
    max-width: 900px;
    margin: 0 auto;
}

.confirmation-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    margin-bottom: 3rem;
}

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

.step-item .step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item .step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-item .step-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.service-reference {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.while-waiting {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.waiting-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.waiting-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.waiting-container > p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.waiting-links {
    display: flex;
    gap: 2rem;
}

.waiting-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.waiting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.waiting-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.waiting-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.waiting-card .link-arrow {
    font-size: 1.5rem;
}

.urgent-note {
    padding: 4rem 5%;
}

.urgent-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.urgent-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgent-container p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.legal-content {
    padding: 4rem 5%;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-text p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .feature-split,
    .testimonial-split,
    .process-split,
    .trust-split,
    .approach-split,
    .philosophy-split,
    .team-split,
    .directions-split,
    .story-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 3rem 5%;
    }

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

    .nav-right {
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
    }

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

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

    .stats-container {
        flex-direction: column;
    }

    .email-grid,
    .waiting-links,
    .visit-benefits {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .nav-split {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
