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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    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;
}

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

.logo a {
    color: #2c3e50;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Split Screen Layouts */
.hero-split,
.split-container,
.form-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split {
    min-height: 90vh;
}

.split-left {
    padding: 4rem;
    background: #f8f9fa;
}

.split-right {
    padding: 0;
    overflow: hidden;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: #fff;
}

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

.btn-secondary {
    background: #95a5a6;
    color: #fff;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: #fff;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

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

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Value Proposition Section */
.value-proposition {
    padding: 5rem 2rem;
}

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

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Section */
.services-preview {
    padding: 5rem 2rem;
    background: #fff;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-price {
    margin: 1.5rem 0;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

/* Booking Form Section */
.booking-form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    min-height: auto;
}

.form-left,
.form-right {
    padding: 3rem;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.selected-service-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.selected-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-top: 0.5rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.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 textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

/* Testimonials */
.testimonials-split {
    padding: 5rem 0;
    background: #fff;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-content {
    padding: 4rem;
    max-width: 600px;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.process-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e8f4fd;
    margin-bottom: 1rem;
}

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

.process-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Sections */
.cta-final,
.cta-services,
.cta-about,
.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    text-align: center;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-content-center .btn {
    background: #fff;
    color: #3498db;
}

.cta-content-center .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 15px 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;
    min-width: 300px;
}

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

/* Services Detail Page */
.page-header-split {
    display: flex;
    min-height: 400px;
}

.header-content {
    background: #f8f9fa;
    padding: 4rem;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-item {
    margin-bottom: 4rem;
}

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

.service-info {
    padding: 3rem;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

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

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

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.pricing-info-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.pricing-feature {
    flex: 1;
    min-width: 250px;
}

.pricing-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* About Page */
.about-hero-split {
    display: flex;
    min-height: 500px;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-section {
    padding: 5rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.team-section {
    padding: 5rem 2rem;
}

.team-split-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.team-member.reverse {
    flex-direction: row-reverse;
}

.member-image {
    flex: 0 0 250px;
}

.member-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1rem;
}

.equipment-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

/* Contact Page */
.contact-hero {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-split-section {
    padding: 3rem 2rem;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 3rem;
}

.contact-info-box h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

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

.contact-item a {
    color: #3498db;
    text-decoration: underline;
}

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

.faq-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

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

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

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

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

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

.booking-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.booking-summary h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.next-steps h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.next-steps li {
    padding: 0.5rem 0;
    color: #555;
}

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

.social-proof {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
}

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

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

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

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

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

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

.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: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

#manage-cookies {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .split-container,
    .form-split,
    .page-header-split,
    .about-hero-split {
        flex-direction: column;
    }

    .service-detail-item.reverse .split-container {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: 400px;
    }

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .process-item {
        flex: 1 1 100%;
    }

    .team-member,
    .team-member.reverse {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

    .section-header-center h2,
    .content-block h2 {
        font-size: 2rem;
    }

    .split-left,
    .split-right,
    .form-left,
    .form-right {
        padding: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-group .btn {
        width: 100%;
    }

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

    .thanks-actions .btn {
        width: 100%;
    }
}