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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Navigation - Split Style */
.nav-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

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

.nav-links a {
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Split Section */
.hero-split, .page-hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content, .hero-visual {
    flex: 1;
    padding: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* Intro Split Section */
.intro-split, .story-split, .values-split, .team-split, .approach-split,
.trust-split, .benefits-split, .service-detail-split, .contact-info-split,
.contact-cta-split, .form-split, .thanks-split {
    display: flex;
    min-height: 500px;
}

.intro-visual, .story-visual, .values-visual, .team-visual, .approach-visual,
.trust-visual, .benefits-visual, .service-detail-visual, .contact-visual,
.contact-cta-visual, .form-visual, .thanks-visual {
    flex: 1;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-visual img, .story-visual img, .values-visual img, .team-visual img,
.approach-visual img, .trust-visual img, .benefits-visual img,
.service-detail-visual img, .contact-visual img, .contact-cta-visual img,
.form-visual img, .thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content, .story-content, .values-content, .team-content, .approach-content,
.trust-content, .benefits-content, .service-detail-content, .contact-content,
.contact-cta-content, .form-container, .thanks-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2, .story-content h2, .values-content h2, .team-content h2,
.approach-content h2, .trust-content h2, .benefits-content h2,
.service-detail-content h2, .contact-content h2, .contact-cta-content h2,
.form-container h2, .thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p, .story-content p, .values-content p, .team-content p,
.approach-content p, .trust-content p, .benefits-content p,
.service-detail-content p, .contact-content p, .contact-cta-content p,
.thanks-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Reverse Layout */
.reverse {
    flex-direction: row-reverse;
}

/* Services Showcase Section */
.services-showcase {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.25rem;
    color: #64748b;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

/* Buttons and CTAs */
.btn-select-service, .btn-submit, .cta-primary, .cta-secondary, .cta-large, .cta-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-select-service, .cta-primary, .cta-large {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-select-service:hover, .cta-primary:hover, .cta-large:hover {
    background-color: #1d4ed8;
}

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

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-link {
    background: none;
    padding: 0;
    color: #2563eb;
    font-weight: 600;
}

.cta-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    width: 100%;
    font-size: 1.125rem;
}

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

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-intro {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

/* Testimonials */
.testimonial {
    padding: 2rem;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    margin-bottom: 1.5rem;
}

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

.testimonial-author {
    font-weight: 600;
    color: #64748b;
}

/* Benefits List */
.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.125rem;
    color: #475569;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: #1e293b;
}

/* Value Items */
.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #64748b;
}

/* Full Width CTA Section */
.cta-fullwidth {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.cta-fullwidth .cta-large {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-fullwidth .cta-large:hover {
    background-color: #f1f5f9;
}

/* Contact Details */
.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    margin-top: 2rem;
}

.contact-note p {
    color: #92400e;
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    height: 400px;
    overflow: hidden;
}

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

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

/* Thanks Page */
.thanks-lead {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 2rem;
}

.thanks-message {
    padding: 2rem;
    background-color: #d1fae5;
    border-left: 4px solid #059669;
    margin-bottom: 2.5rem;
}

.thanks-message p {
    color: #065f46;
    margin-bottom: 0;
}

.thanks-next {
    margin-bottom: 2.5rem;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.thanks-next li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
}

.thanks-next li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

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

/* Policy Pages */
.policy-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.policy-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.policy-updated {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 3rem;
}

.policy-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-container p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.policy-container li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-container strong {
    color: #1e293b;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px 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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.btn-cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.btn-cookie-reject:hover {
    background-color: #334155;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split, .page-hero-split, .intro-split, .story-split, .values-split,
    .team-split, .approach-split, .trust-split, .benefits-split,
    .service-detail-split, .contact-info-split, .contact-cta-split,
    .form-split, .thanks-split {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .hero-content, .hero-visual, .intro-content, .intro-visual,
    .story-content, .story-visual, .values-content, .values-visual,
    .team-content, .team-visual, .approach-content, .approach-visual,
    .trust-content, .trust-visual, .benefits-content, .benefits-visual,
    .service-detail-content, .service-detail-visual, .contact-content,
    .contact-visual, .contact-cta-content, .contact-cta-visual,
    .form-container, .form-visual, .thanks-content, .thanks-visual {
        padding: 2rem;
    }

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

    .intro-content h2, .story-content h2, .values-content h2, .team-content h2,
    .approach-content h2, .trust-content h2, .benefits-content h2,
    .service-detail-content h2, .contact-content h2, .contact-cta-content h2,
    .form-container h2 {
        font-size: 1.75rem;
    }

    .services-header h2, .cta-content h2 {
        font-size: 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

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

@media (max-width: 640px) {
    .hero-content, .hero-visual, .intro-content, .intro-visual,
    .form-container, .form-visual, .thanks-content, .thanks-visual {
        padding: 1.5rem;
    }

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

    .services-showcase {
        padding: 3rem 1rem;
    }

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}
