/* 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.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

a:hover {
    opacity: 0.7;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Ad Notice */
.ad-notice {
    background-color: #f5f5f5;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 0.875rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f8f8;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

/* Split Sections */
.intro-split,
.booking-split,
.values-split,
.philosophy-split,
.about-split,
.service-detail-split,
.contact-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse,
.booking-split.reverse,
.values-split.reverse,
.philosophy-split.reverse,
.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.booking-image,
.values-image,
.philosophy-image,
.about-image,
.service-detail-image,
.contact-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

.intro-image img,
.booking-image img,
.values-image img,
.philosophy-image img,
.about-image img,
.service-detail-image img,
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text,
.booking-content,
.values-content,
.philosophy-content,
.about-content,
.service-detail-content,
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #ffffff;
}

.intro-text h2,
.booking-content h2,
.values-content h2,
.philosophy-content h2,
.about-content h2,
.service-detail-content h2,
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p,
.philosophy-content p,
.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #444;
}

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.section-header {
    max-width: 800px;
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.section-header p {
    font-size: 1.25rem;
    color: #666;
}

.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: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Buttons */
.cta-primary,
.cta-secondary,
.select-service {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary,
.select-service {
    background-color: #e67e22;
    color: #ffffff;
}

.cta-primary:hover,
.select-service:hover {
    background-color: #d35400;
    opacity: 1;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
    opacity: 1;
}

.select-service {
    width: 100%;
    margin-top: 1rem;
}

/* Forms */
.booking-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.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.875rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #e67e22;
}

.form-group textarea {
    resize: vertical;
}

/* Values Section */
.values-list {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    color: #555;
}

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

.value-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    font-size: 1.125rem;
    color: #555;
}

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

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

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

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

.team-member p {
    font-size: 1rem;
    color: #555;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-overlay p {
    font-size: 1.25rem;
}

/* Service Details */
.inclusion-list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.inclusion-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.inclusion-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: 700;
}

/* Booking Section */
.booking-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.booking-container p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Contact Info */
.contact-block {
    margin-bottom: 2.5rem;
}

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

.contact-block p {
    font-size: 1.125rem;
    color: #555;
}

/* Map Section */
.map-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    background-color: #e8e8e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #666;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.step {
    flex: 1;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step p {
    font-size: 1rem;
    color: #555;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-section.centered {
    text-align: center;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

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

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

.legal-container li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-updated {
    font-size: 0.875rem;
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

.cookie-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

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

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

.footer-column a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #e67e22;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    padding: 2rem;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .values-split,
    .philosophy-split,
    .about-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .booking-split.reverse,
    .values-split.reverse,
    .philosophy-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .booking-content,
    .values-content,
    .philosophy-content,
    .about-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-image,
    .intro-image,
    .booking-image,
    .values-image,
    .philosophy-image,
    .about-image,
    .service-detail-image,
    .contact-image {
        min-height: 300px;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
        gap: 0.5rem;
    }

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

    .nav-toggle {
        display: block;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2,
    .intro-text h2,
    .booking-content h2,
    .values-content h2 {
        font-size: 2rem;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

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

    .thanks-container {
        padding: 2rem;
    }

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

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

    .cookie-banner {
        padding: 1.5rem;
    }

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

    .cookie-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem;
    }

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

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

    .page-hero {
        height: 250px;
    }

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

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