/* 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', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Navigation - Split Layout */
.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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0052cc;
}

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

.nav-right a {
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #0052cc;
}

.nav-cta {
    background: #0052cc;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #003d99;
}

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

.hero-text {
    flex: 1;
    padding: 5% 5% 5% 8%;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 540px;
}

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

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

/* Trust Strip */
.trust-strip {
    background: #f8f9fa;
    padding: 2rem 5%;
}

.trust-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.content-text {
    flex: 1;
    padding: 5% 5% 5% 8%;
}

.content-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
    font-weight: 700;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.content-visual img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0052cc;
    opacity: 0.3;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

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

/* Services Preview */
.services-preview {
    padding: 6rem 5%;
    background: #f8f9fa;
}

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

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0a0a0a;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #0052cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,82,204,0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #0052cc;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #0052cc;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0052cc;
    color: #ffffff;
}

/* Testimonial Block */
.testimonial-block {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-block blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    font-style: normal;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: #0a0a0a;
    color: #ffffff;
}

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

.cta-section > .container > p {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Forms */
.main-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #0052cc;
    background: rgba(255,255,255,0.15);
}

.form-row textarea {
    width: 100%;
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: #0052cc;
    color: #ffffff;
    padding: 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,82,204,0.4);
}

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.cookie-content a {
    color: #0052cc;
    text-decoration: underline;
}

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

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

.btn-cookie.accept {
    background: #0052cc;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #003d99;
}

.btn-cookie.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-cookie.reject:hover {
    border-color: #ffffff;
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    text-align: center;
}

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

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #0052cc;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 5%;
    background: #0052cc;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    opacity: 0.9;
}

/* CTA Simple */
.cta-simple {
    padding: 5rem 5%;
    text-align: center;
    background: #f8f9fa;
}

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

.cta-simple p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 5%;
}

.service-detail {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.service-detail h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    list-style: disc;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.price-large {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #4a4a4a;
    font-size: 0.9375rem;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.pricing-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

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

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 5%;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.address-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.email-link {
    color: #0052cc;
    font-size: 1.25rem;
    font-weight: 600;
}

.sub-info {
    font-size: 0.9375rem;
    color: #666;
    margin-top: 0.5rem;
}

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

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

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
}

.map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.transport-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.transport-list li {
    list-style: disc;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.inline-link {
    color: #0052cc;
    text-decoration: underline;
}

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

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #0052cc;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.why-us-compact {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.why-us-compact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.features-compact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 1.5rem;
}

.feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #0052cc;
}

.feature p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
}

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

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

.updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #0052cc;
}

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

.legal-section ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-section ul li {
    list-style: disc;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-section a {
    color: #0052cc;
    text-decoration: underline;
}

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.legal-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    font-size: 1.125rem;
}

.legal-nav a {
    color: #0052cc;
    margin: 0 0.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #0052cc;
    font-weight: 600;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-right {
        display: none;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-visual img {
        height: 50vh;
    }

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

    .content-text,
    .hero-text {
        padding: 3rem 5%;
    }

    .content-visual img {
        height: 50vh;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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

    .service-cards,
    .team-grid,
    .stats-grid {
        flex-direction: column;
    }
}
