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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: #f8f9f8;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1e4620;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Services Grid */
.services-highlight {
    padding: 5rem 0;
    background: #f8f9f8;
}

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

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Booking Form Section */
.booking-form-section {
    padding: 4rem 0;
    background: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    margin-bottom: 2rem;
    color: #555;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

/* Split Content Section */
.split-content-section {
    display: flex;
    align-items: stretch;
}

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

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

.split-text-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9f8;
}

.split-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-text-right p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

.link-arrow {
    color: #2c5f2d;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: #f8f9f8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

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

/* CTA Banner */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #2c5f2d;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-col ul a {
    color: #aaa;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

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

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #1e4620;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(44, 95, 45, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* About Content Split */
.about-content-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.about-text-left {
    flex: 1;
}

.about-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text-left p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

.about-image-right {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-right img {
    width: 100%;
    height: auto;
}

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

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

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

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.value-card p {
    color: #555;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.15rem;
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2c5f2d;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-role {
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #555;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background: #f8f9f8;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background: #f8f9f8;
}

.service-detail-left {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-right {
    flex: 1;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.service-detail-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

/* Pricing Note */
.pricing-note {
    padding: 3rem 0;
    background: #f8f9f8;
}

.pricing-note h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-note p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Contact Split */
.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
}

.contact-block a {
    color: #2c5f2d;
    font-weight: 600;
}

.contact-map-right {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: #1a1a1a;
}

/* Contact Note */
.contact-note {
    padding: 4rem 0;
    background: #f8f9f8;
}

.contact-note h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-note .btn-primary {
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #f8f9f8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

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

.faq-item p {
    color: #555;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 0;
    background: #f8f9f8;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.thanks-details ul {
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
}

.thanks-details ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

.thanks-note {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f0ad4e;
}

.thanks-note p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.thanks-note a {
    color: #2c5f2d;
    font-weight: 600;
}

/* Next Steps Section */
.next-steps {
    padding: 5rem 0;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.next-step-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: #f8f9f8;
    padding: 2rem;
    border-radius: 12px;
}

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

.next-step-card p {
    color: #555;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background: #ffffff;
}

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

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

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #2c5f2d;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

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

    .about-content-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .testimonial-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

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

    .btn-sticky {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .hero-content-left h1 {
        font-size: 2rem;
    }

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

    .thanks-container h1 {
        font-size: 2rem;
    }

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

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