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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

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

/* Navigation Split */
.nav-split {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left {
    margin-bottom: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-right {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-right a {
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

.nav-cta {
    background: #e74c3c;
    color: #fff !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 6px;
    text-align: center;
    margin-top: 0.5rem;
}

/* Hero Split */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

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

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

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

.hero-visual {
    width: 100%;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: #34495e;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
}

.btn-primary-large {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

/* Intro Split */
.intro-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    background: #f8f9fa;
}

.intro-split.reverse {
    flex-direction: column;
}

.intro-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Services Preview */
.services-preview {
    padding: 4rem 1.5rem;
    background: #fff;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.service-left {
    padding: 2rem;
    flex: 1;
}

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

.service-left p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-left ul {
    list-style: none;
    padding-left: 0;
}

.service-left ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-left ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-right {
    padding: 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.btn-service {
    background: #34495e;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-service:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

/* Why Us Split */
.why-us-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background: #ecf0f1;
}

.why-content {
    margin-bottom: 2rem;
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.why-item p {
    color: #666;
    font-size: 1.05rem;
}

.why-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Testimonials */
.testimonials {
    padding: 4rem 1.5rem;
    background: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

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

.testimonial-author {
    font-weight: 600;
    color: #34495e;
}

/* Process Split */
.process-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background: #2c3e50;
    color: #fff;
}

.process-visual {
    margin-bottom: 2rem;
}

.process-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.process-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #bdc3c7;
    font-size: 1.05rem;
}

/* CTA Banner */
.cta-banner {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Form Split */
.form-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px 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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    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: #e74c3c;
}

.btn-submit {
    width: 100%;
    background: #e74c3c;
    color: #fff;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    background: #34495e;
    color: #fff;
    text-align: center;
}

.final-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #e74c3c;
}

.footer-left p {
    color: #bdc3c7;
}

.footer-center h4,
.footer-right h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-center a,
.footer-right a {
    display: block;
    padding: 0.4rem 0;
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #7f8c8d;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

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

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 3rem;
    }

    .nav-left {
        margin-bottom: 0;
    }

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

    .nav-cta {
        margin-top: 0;
    }

    .hero-split {
        flex-direction: row;
        min-height: 80vh;
    }

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

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

    .hero-visual {
        flex: 1;
    }

    .hero-visual img {
        height: 100%;
    }

    .intro-split {
        flex-direction: row;
        padding: 5rem 3rem;
        gap: 3rem;
    }

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

    .intro-visual {
        flex: 1;
    }

    .intro-visual img {
        height: 100%;
        margin-bottom: 0;
    }

    .intro-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .services-preview {
        padding: 5rem 3rem;
    }

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

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

    .service-left {
        flex: 2;
    }

    .service-right {
        flex: 1;
    }

    .why-us-split {
        flex-direction: row;
        padding: 5rem 3rem;
        gap: 4rem;
    }

    .why-content {
        flex: 1;
        margin-bottom: 0;
    }

    .why-visual {
        flex: 1;
    }

    .why-visual img {
        height: 100%;
    }

    .testimonials {
        padding: 5rem 3rem;
    }

    .testimonial-split {
        flex-direction: row;
        gap: 3rem;
    }

    .process-split {
        flex-direction: row;
        padding: 5rem 3rem;
        gap: 4rem;
    }

    .process-visual {
        flex: 1;
        margin-bottom: 0;
    }

    .process-visual img {
        height: 100%;
    }

    .process-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .form-split {
        flex-direction: row;
        padding: 5rem 3rem;
        gap: 4rem;
    }

    .form-intro {
        flex: 1;
        margin-bottom: 0;
    }

    .form-container {
        flex: 1;
    }

    .final-cta-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 4rem 3rem;
        text-align: left;
    }

    .final-content {
        flex: 1;
    }

    .final-action {
        flex: 0;
    }

    .footer-split {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left {
        flex: 2;
    }

    .footer-center,
    .footer-right {
        flex: 1;
    }

    .cookie-banner {
        padding: 2rem 3rem;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
        margin-right: 2rem;
    }

    .cookie-actions {
        flex: 0;
        min-width: 300px;
    }
}

/* Desktop Styles */
@media (min-width: 1200px) {
    .nav-split {
        padding: 1.5rem 5rem;
    }

    .hero-content {
        padding: 5rem;
    }

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

    .intro-split {
        padding: 6rem 5rem;
    }

    .services-preview {
        padding: 6rem 5rem;
    }

    .why-us-split {
        padding: 6rem 5rem;
    }

    .testimonials {
        padding: 6rem 5rem;
    }

    .process-split {
        padding: 6rem 5rem;
    }

    .form-split {
        padding: 6rem 5rem;
    }

    .final-cta-split {
        padding: 5rem 5rem;
    }

    footer {
        padding: 4rem 5rem 2rem;
    }
}
