/* 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, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

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

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

.centered {
    text-align: center;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #0a0a0a;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #2a2a2a;
}

/* Header and Navigation */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

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

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

.nav a {
    font-weight: 500;
    color: #3a3a3a;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    padding: 0.35rem 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #f9f9f9;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c5f2d;
    transition: all 0.3s ease;
}

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

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

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

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

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

.btn-full {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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 {
    margin: 0;
    color: #ffffff;
    flex: 1;
}

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

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

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

.btn-accept:hover {
    background: #23491f;
}

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    align-items: center;
    padding: 4rem;
    background: #f8f9f8;
}

.hero-content {
    max-width: 600px;
}

.hero-right {
    background: #d0d8d0;
    position: relative;
}

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

/* Intro Section */
.intro-section {
    padding: 6rem 0;
    background: #ffffff;
    text-align: center;
}

.intro-section h2 {
    margin-bottom: 1.5rem;
}

/* Features Split Section */
.features-split {
    background: #fafafa;
}

.feature-row {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image,
.feature-content {
    flex: 1;
}

.feature-image {
    background: #e0e5e0;
    position: relative;
    overflow: hidden;
}

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

.feature-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.feature-row:nth-child(even) .feature-content {
    background: #f5f7f5;
}

.price-display {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 1.5rem 0;
}

.select-service {
    margin-top: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #ffffff;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9f8;
    border-radius: 8px;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f2d;
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.booking-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    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: #2c5f2d;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f8f9f8;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #2c5f2d;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 3px solid #2c5f2d;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

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

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

.footer-col a {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

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

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

/* About Split */
.about-split {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.about-content {
    flex: 1.2;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.about-image {
    flex: 0.8;
    background: #d0d8d0;
    position: relative;
}

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

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

.values-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

/* Location Section */
.split-layout {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

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

.split-image {
    background: #d0d8d0;
    position: relative;
}

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

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

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: #ffffff;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4421 100%);
    color: #ffffff;
}

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

.cta-section p {
    color: #e0e8e0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Services Full */
.services-full {
    background: #fafafa;
}

.service-full-item {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.service-full-item.reverse {
    flex-direction: row-reverse;
}

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

.service-full-image {
    background: #e0e5e0;
    position: relative;
}

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

.service-full-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.service-full-item:nth-child(even) .service-full-content {
    background: #f8f9f8;
}

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

.service-full-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-full-content li {
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

/* Contact Split */
.contact-split {
    display: flex;
    align-items: stretch;
    min-height: 800px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 5rem 4rem;
    background: #ffffff;
}

.contact-map {
    background: #d0d8d0;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
}

.info-block {
    margin-bottom: 3rem;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.email-display {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5f2d;
}

.note-text {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.75rem;
}

.hours-list {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.day {
    font-weight: 600;
}

.time {
    color: #4a4a4a;
}

.requirements-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.requirements-list li {
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

/* Directions Section */
.directions-section {
    padding: 6rem 0;
    background: #f5f7f5;
}

.directions-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.direction-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

/* FAQ Contact */
.faq-contact {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h4 {
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9f8 0%, #e8ebe8 100%);
}

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

.thanks-message {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.confirmation-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    text-align: left;
}

.confirmation-details h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-label {
    font-weight: 600;
    color: #4a4a4a;
}

.detail-value {
    color: #2c5f2d;
    font-weight: 500;
}

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

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.step-content h4 {
    margin-bottom: 0.5rem;
}

/* Contact Reminder */
.contact-reminder {
    padding: 6rem 0;
    background: #f5f7f5;
}

.email-display-alt {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f2d;
    margin: 1.5rem 0;
}

.business-hours-reminder {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.action-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Content */
.legal-header {
    padding: 4rem 0 2rem;
    background: #f8f9f8;
}

.updated-date {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.legal-content {
    padding: 4rem 0 6rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f4421;
}

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

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

.cookies-table th {
    background: #f5f7f5;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-split,
    .feature-row,
    .about-split,
    .split-layout,
    .service-full-item,
    .contact-split {
        flex-direction: column;
        min-height: auto;
    }

    .feature-row.reverse,
    .split-layout.reverse,
    .service-full-item.reverse {
        flex-direction: column;
    }

    .hero-left,
    .feature-content,
    .about-content,
    .split-content,
    .service-full-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-right,
    .feature-image,
    .about-image,
    .split-image,
    .service-full-image,
    .contact-map {
        min-height: 400px;
    }

    .process-grid,
    .testimonial-grid,
    .values-grid,
    .directions-grid {
        flex-direction: column;
    }

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

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

    .cta-buttons,
    .action-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 2rem;
        border-top: 1px solid #e0e0e0;
        gap: 1rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
}