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

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

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

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

a:hover {
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a9d5f;
    color: #fff;
}

.btn-accept:hover {
    background: #3d8450;
}

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

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

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

.nav-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f4f;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-right a.active::after,
.nav-right a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c5f4f;
}

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

.hero-left {
    flex: 1;
    padding: 60px 5% 60px 8%;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    max-width: 540px;
}

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

.hero-image {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2c5f4f;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #234d40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,95,79,0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2c5f4f;
    border: 2px solid #2c5f4f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5f4f;
    color: #fff;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Split Sections */
.split-section {
    display: flex;
    align-items: center;
}

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

.split-content {
    flex: 1;
    padding: 80px 8%;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

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

.link-arrow {
    display: inline-block;
    margin-top: 16px;
    color: #2c5f4f;
    font-weight: 600;
    font-size: 16px;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 19px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px 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 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.service-card .price {
    padding: 0 20px 10px;
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 0;
}

.service-card .btn-secondary {
    margin: 0 20px 20px;
    padding: 10px 24px;
    font-size: 14px;
}

/* Process Steps */
.process-steps {
    margin-top: 30px;
}

.step {
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f4f;
    opacity: 0.3;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 5%;
    background: #f0f4f2;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 15px;
    color: #2c5f4f;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5f4f 0%, #4a9d5f 100%);
}

.cta-section .split-content {
    color: #fff;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
}

.cta-section .btn-large {
    background: #fff;
    color: #2c5f4f;
}

.cta-section .btn-large:hover {
    background: #f0f0f0;
}

/* Form Section */
.form-section {
    padding: 80px 5%;
    background: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.booking-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #2c5f4f;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5f4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234d40;
    transform: translateY(-2px);
}

/* Footer Split */
.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
    background: #1a1a1a;
    color: #fff;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #4a9d5f;
}

.footer-brand p {
    font-size: 14px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #ccc;
}

.footer-right p {
    font-size: 14px;
    color: #999;
}

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

.btn-sticky {
    display: block;
    padding: 14px 28px;
    background: #2c5f4f;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44,95,79,0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #234d40;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44,95,79,0.5);
}

/* Values List */
.values-list {
    margin-top: 30px;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f4f;
}

.value-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 5%;
    background: #2c5f4f;
    color: #fff;
    text-align: center;
}

.stats-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #fff;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* CTA Centered */
.cta-centered {
    padding: 80px 5%;
    text-align: center;
    background: #f8f9fa;
}

.cta-centered h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-centered p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Detail */
.service-detail {
    position: relative;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 10px 0 10px 32px;
    font-size: 16px;
    color: #555;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: 700;
    font-size: 18px;
}

/* Extras Section */
.extras-section {
    padding: 80px 5%;
    background: #fff;
}

.extras-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.extras-grid {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.extra-card {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.extra-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.extra-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

.extra-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f4f;
}

/* Contact Info */
.contact-info .info-block {
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f4f;
}

.contact-info .info-block p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.contact-info a {
    color: #2c5f4f;
    font-weight: 600;
}

.info-note {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

/* Map Section */
.map-section {
    padding: 60px 5%;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.map-placeholder {
    background: #e0e0e0;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
}

.map-placeholder p {
    font-size: 18px;
    color: #555;
    margin-bottom: 12px;
}

.map-note {
    font-size: 15px;
    color: #777;
}

/* FAQ */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4a9d5f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #2c5f4f;
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.thanks-steps {
    list-style: none;
    counter-reset: steps;
}

.thanks-steps li {
    counter-increment: steps;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    background: #2c5f4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.thanks-contact {
    background: #f0f4f2;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-contact p {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.thanks-contact a {
    color: #2c5f4f;
    font-weight: 600;
    font-size: 17px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 60px 5%;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 15px;
    color: #999;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c5f4f;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin: 16px 0 16px 24px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-container a {
    color: #2c5f4f;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

    .hero-left {
        padding: 40px 5%;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-right {
        width: 100%;
    }

    .hero-image {
        height: 50vh;
    }

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

    .split-content {
        padding: 50px 5%;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .split-image img {
        min-height: 300px;
    }

    .nav-right {
        gap: 20px;
    }

    .services-grid {
        justify-content: center;
    }

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

    .stats-grid {
        gap: 40px;
    }

    .footer-split {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .nav-split {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-left h1 {
        font-size: 32px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .service-card {
        max-width: 100%;
    }

    .booking-form {
        padding: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-container h1 {
        font-size: 28px;
    }

    .legal-container h1 {
        font-size: 32px;
    }
}
