* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

.split-left {
    display: flex;
    align-items: center;
    padding: 5rem;
    background: var(--bg-light);
}

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

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.split-right {
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.split-section {
    display: flex;
    min-height: 70vh;
}

.split-content,
.split-visual {
    flex: 1;
}

.split-content {
    display: flex;
    align-items: center;
    padding: 5rem;
    background: var(--bg-white);
}

.content-block {
    max-width: 500px;
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

.split-section.reverse .split-content {
    background: var(--bg-light);
}

.services-intro {
    padding: 5rem 5%;
    text-align: center;
    background: var(--bg-white);
}

.intro-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-split {
    background: var(--bg-light);
}

.service-card-split {
    display: flex;
    min-height: 500px;
}

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

.service-visual {
    overflow: hidden;
}

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

.service-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--bg-white);
}

.service-card-split:nth-child(even) .service-details {
    background: var(--bg-light);
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

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

.cta-split {
    display: flex;
    min-height: 600px;
}

.cta-content,
.cta-form-container {
    flex: 1;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--primary-color);
    color: white;
}

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

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-form-container {
    display: flex;
    align-items: center;
    padding: 5rem;
    background: var(--bg-light);
}

.project-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

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

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.trust-split {
    display: flex;
    min-height: 600px;
}

.trust-visual,
.trust-content {
    flex: 1;
}

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

.trust-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--bg-white);
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-split {
    display: flex;
}

.testimonial-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem;
    background: var(--bg-light);
}

.testimonial-card.dark {
    background: var(--primary-color);
    color: white;
}

.quote-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-card.dark .quote-content p {
    color: white;
}

.author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonial-card.dark .author {
    color: var(--accent-color);
}

.process-split {
    display: flex;
    min-height: 700px;
}

.process-content,
.process-visual {
    flex: 1;
}

.process-content {
    padding: 5rem;
    background: var(--bg-white);
}

.process-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

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

.final-cta-split {
    display: flex;
    min-height: 400px;
    background: var(--secondary-color);
}

.final-left,
.final-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.final-left {
    background: var(--secondary-color);
    color: white;
}

.final-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-left p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary-alt {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.final-right {
    background: var(--primary-color);
    color: white;
}

.cta-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-section ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul a:hover {
    opacity: 1;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.btn-cookie:hover {
    background: var(--accent-color);
    color: white;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .service-card-split,
    .cta-split,
    .trust-split,
    .testimonials-split,
    .process-split,
    .final-cta-split {
        flex-direction: column;
    }

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

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

    .split-left {
        padding: 3rem;
    }

    .split-content,
    .service-details,
    .trust-content,
    .process-content,
    .cta-content,
    .cta-form-container,
    .final-left,
    .final-right {
        padding: 3rem;
    }

    .testimonial-card {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }
}