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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

/* Navigation - Split Style */
.nav-split {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    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: var(--primary-color);
}

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

.nav-right a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-right a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--secondary-color);
}

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

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

.hero-left {
    padding: 4rem;
}

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

.hero-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-split h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-split p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

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

/* Stats Split Section */
.stats-split {
    display: flex;
    align-items: stretch;
}

.stats-left,
.stats-right {
    flex: 1;
}

.stats-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-right {
    padding: 5rem 4rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-right h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.stat-item {
    flex: 1;
    min-width: 45%;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Services Highlight */
.services-highlight {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-visual,
.service-details {
    flex: 1;
}

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

.service-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    align-self: flex-start;
}

.service-cta:hover {
    background: var(--secondary-color);
}

/* Why Us Split */
.why-us-split {
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

.why-left,
.why-right {
    flex: 1;
}

.why-left {
    padding: 5rem 4rem;
}

.why-left h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.reason-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 12px;
}

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

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #e5e7eb;
    min-width: 120px;
    text-align: center;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Split */
.testimonials-split {
    display: flex;
    align-items: stretch;
}

.testimonials-left,
.testimonials-right {
    flex: 1;
}

.testimonials-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-right {
    padding: 5rem 4rem;
    background: var(--primary-color);
    color: white;
}

.testimonials-right h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.125rem;
}

.testimonial-author span {
    opacity: 0.8;
}

/* Coverage Section */
.coverage-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.coverage-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.coverage-text,
.coverage-visual {
    flex: 1;
}

.coverage-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.coverage-visual img {
    border-radius: 12px;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro,
.form-container {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.form-intro > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-feature span {
    width: 30px;
    height: 30px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-feature p {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* CTA Final */
.cta-final {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.btn-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-large:hover {
    background: #d97706;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split h1 {
        font-size: 2.5rem;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 2.25rem;
    }

    .hero-left,
    .stats-right,
    .why-left,
    .testimonials-right {
        padding: 3rem 2rem;
    }
}

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

    .hero-split,
    .stats-split,
    .why-us-split,
    .testimonials-split,
    .form-split,
    .coverage-split {
        flex-direction: column;
    }

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

    .hero-right img {
        height: 400px;
    }

    .step-split,
    .step-split.reverse-step {
        flex-direction: column;
        text-align: center;
    }

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

    .section-header-center h2,
    .section-title-center,
    .why-left h2,
    .testimonials-right h2,
    .form-intro h2,
    .cta-content h2 {
        font-size: 1.875rem;
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .stat-item {
        min-width: 100%;
    }
}
