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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

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

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

ul {
    list-style: none;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5016;
}

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

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-right a:hover,
.nav-right a.active {
    color: #2d5016;
    border-bottom-color: #2d5016;
}

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

.hero-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: #f0f4ed;
    color: #2d5016;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background: #f5f7f3;
}

.page-hero-split .hero-left {
    padding: 4rem 5%;
}

.page-hero-split h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Split Alternating Sections */
.split-alt,
.split-reverse {
    display: flex;
    align-items: center;
}

.split-alt {
    background: #ffffff;
}

.split-reverse {
    background: #f5f7f3;
    flex-direction: row-reverse;
}

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

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

.split-text {
    flex: 1;
    padding: 5rem 5%;
}

.split-text h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.split-text ul {
    margin: 1.5rem 0;
}

.split-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.split-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

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

.btn-primary {
    background: #2d5016;
    color: #ffffff;
}

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

.btn-secondary {
    background: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
}

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

/* Certification Strip */
.certification-strip,
.trust-strip,
.info-strip {
    display: flex;
    justify-content: space-around;
    padding: 3rem 5%;
    background: #2d5016;
    color: #ffffff;
}

.cert-item,
.trust-item,
.info-item {
    text-align: center;
}

.cert-item h3,
.trust-item h3,
.info-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cert-item p,
.trust-item p,
.info-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-strip,
.info-strip {
    background: #f0f4ed;
    color: #1a1a1a;
}

/* Service List */
.service-list {
    margin: 2rem 0;
}

.service-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.service-item .price {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5016;
}

/* Testimonial Band */
.testimonial-band {
    padding: 4rem 10%;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-band blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
}

.testimonial-band cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Spec List */
.spec-list {
    margin: 1.5rem 0;
    background: #f5f7f3;
    padding: 2rem;
    border-radius: 8px;
}

.spec-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.spec-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
    font-size: 1.2rem;
}

/* CTA Split Section */
.cta-split {
    display: flex;
    background: #ffffff;
}

.cta-left {
    flex: 1;
    padding: 5rem 5%;
    background: #f5f7f3;
}

.cta-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-left img {
    margin-top: 2rem;
    border-radius: 8px;
}

.cta-right {
    flex: 1;
    padding: 5rem 5%;
}

/* Form Split */
.form-split {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e5e5;
    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: #2d5016;
}

.form-group textarea {
    resize: vertical;
}

/* CTA Centered */
.cta-centered {
    text-align: center;
    padding: 5rem 10%;
    background: #2d5016;
    color: #ffffff;
}

.cta-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background: #f5f7f3;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 0.95rem;
    color: #444;
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    padding: 5rem 0;
    align-items: center;
}

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

.service-detail-split:nth-child(odd) {
    background: #ffffff;
}

.service-detail-split:nth-child(even) {
    background: #f5f7f3;
}

.service-content {
    flex: 1;
    padding: 3rem 5%;
}

.service-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #2d5016;
    background: #f0f4ed;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

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

.service-content ul {
    margin: 2rem 0;
}

.service-content li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.price-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f4ed;
    border-radius: 8px;
    display: inline-block;
}

.price-from {
    font-size: 0.9rem;
    color: #666;
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
}

.service-image {
    flex: 1;
}

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

/* Contact Split */
.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    padding: 5rem 5%;
    background: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
}

.contact-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.contact-block a {
    color: #2d5016;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Thanks Page */
.thanks-container {
    display: flex;
    min-height: 80vh;
}

.thanks-content {
    flex: 2;
    padding: 5rem 5%;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #f5f7f3;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation {
    font-weight: 600;
    color: #2d5016;
    margin-top: 1rem;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-next ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-next li {
    padding: 0.5rem 0;
    color: #444;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.thanks-sidebar {
    flex: 1;
    background: #1a1a1a;
    color: #ffffff;
    position: relative;
}

.thanks-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.sidebar-info {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
}

.sidebar-info h3 {
    margin-bottom: 1rem;
}

.sidebar-info a {
    color: #ffffff;
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-intro {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #444;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

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

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

.cookie-table th {
    background: #f5f7f3;
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    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-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background: #1f3a0f;
}

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

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

/* Footer Split */
.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5%;
    background: #1a1a1a;
    color: #ffffff;
    gap: 3rem;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left h3,
.footer-center h4,
.footer-right h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-left p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-center a,
.footer-right a {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .page-hero-split,
    .split-alt,
    .split-reverse,
    .cta-split,
    .contact-split,
    .service-detail-split,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-left,
    .split-text,
    .cta-left,
    .cta-right,
    .service-content {
        padding: 3rem 5%;
    }

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

    .split-text h2,
    .service-content h2 {
        font-size: 1.8rem;
    }

    .certification-strip,
    .trust-strip,
    .info-strip {
        flex-direction: column;
        gap: 2rem;
    }

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

    .value-card {
        max-width: none;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
