/* 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: #2c3e50;
    background: #ffffff;
}

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

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

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

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c7a7b;
}

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

.nav-right a {
    font-weight: 500;
    color: #4a5568;
}

.nav-right a:hover {
    color: #2c7a7b;
}

.nav-cta {
    background: #2c7a7b;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #234e52;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

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

.hero-lead {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #2c7a7b;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #234e52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,122,123,0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2c7a7b;
    padding: 1rem 2.5rem;
    border: 2px solid #2c7a7b;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-secondary:hover {
    background: #2c7a7b;
    color: #ffffff;
}

.cta-text {
    color: #2c7a7b;
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-text:hover {
    color: #234e52;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    justify-content: space-around;
    padding: 3rem 5%;
    background: #f7fafc;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c7a7b;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: #4a5568;
}

/* Content Split Sections */
.content-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

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

.split-text {
    flex: 1;
    padding: 4rem 8%;
}

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

.split-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2d3748;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Services Cards */
.services-cards {
    padding: 5rem 5%;
    background: #f7fafc;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #4a5568;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

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

.service-card p {
    color: #4a5568;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c7a7b;
    padding: 0 1.5rem;
    margin: 1.5rem 0;
}

.card-cta {
    width: 90%;
    margin: 0 auto 1.5rem;
    display: block;
    padding: 0.9rem;
    background: #2c7a7b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: #234e52;
}

/* Testimonials */
.testimonials-slider {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.testimonials-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    border-left: 4px solid #2c7a7b;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

/* Booking Section */
.booking-section {
    padding: 5rem 5%;
    background: #edf2f7;
}

.booking-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.booking-note {
    background: #ffffff;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #2c7a7b;
    margin-top: 2rem;
}

.booking-form-container {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* Forms */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

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

.submit-btn:hover {
    background: #234e52;
}

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

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

.cta-banner-content p {
    font-size: 1.2rem;
    color: #e6fffa;
    margin-bottom: 2rem;
}

.cta-banner-btn {
    display: inline-block;
    background: #ffffff;
    color: #2c7a7b;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-banner-btn:hover {
    background: #f7fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    line-height: 1.8;
    color: #cbd5e0;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

.cookie-content a {
    color: #81e6d9;
    text-decoration: underline;
}

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

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

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

.cookie-btn.accept:hover {
    background: #234e52;
}

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

.cookie-btn.reject:hover {
    background: #2d3748;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #2c7a7b;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(44,122,123,0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #234e52;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(44,122,123,0.5);
}

/* Page Hero */
.page-hero {
    padding: 5rem 5% 3rem;
    text-align: center;
    background: linear-gradient(to bottom, #f7fafc, #ffffff);
}

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

.page-hero-lead {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #2c7a7b;
}

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

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 5rem 8%;
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    text-align: center;
}

.mission-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.2rem;
    color: #e6fffa;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.9;
}

/* Service Detail Pages */
.service-detail-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.service-detail-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.feature-item {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
}

.feature-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-box {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a7b;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #718096;
}

.service-cta {
    background: #2c7a7b;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #234e52;
}

.pricing-notes-section {
    padding: 3rem 5%;
    background: #f7fafc;
    text-align: center;
}

.pricing-notes-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.pricing-info p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-info-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    background: #f7fafc;
}

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

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2c7a7b;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c7a7b;
    margin-top: 2rem;
}

.contact-note p {
    color: #2d3748;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44,122,123,0.9);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    line-height: 1.6;
}

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

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

/* Thanks Page */
.thanks-hero {
    display: flex;
    min-height: 70vh;
    align-items: center;
    padding: 4rem 5%;
    gap: 4rem;
}

.thanks-content {
    flex: 1.2;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.selected-service {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #2c7a7b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thanks-next-steps {
    margin: 2rem 0;
}

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

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 0.8;
}

.thanks-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

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

.legal-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin: 2.5rem 0 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2c7a7b;
    margin: 2rem 0 0.8rem;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page a {
    color: #2c7a7b;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #234e52;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .content-split,
    .service-detail-split,
    .booking-wrapper,
    .contact-info-split,
    .thanks-hero {
        flex-direction: column;
    }

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

    .hero-content,
    .split-text,
    .service-detail-text,
    .booking-info,
    .contact-info-block,
    .thanks-content {
        padding: 2rem 5%;
    }

    .service-card,
    .testimonial {
        width: calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .service-card,
    .testimonial,
    .value-card {
        width: 100%;
    }

    .trust-strip {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .cta-banner-content h2 {
        font-size: 2rem;
    }
}
