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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c39d6d;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #6a6a6a;
    --background-light: #f8f6f3;
    --background-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

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

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

/* Navigation */
.main-nav {
    background: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-content {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background-light);
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-image {
    min-height: 400px;
    overflow: hidden;
}

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

/* Split Sections */
.split-section {
    display: flex;
    flex-direction: column;
}

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

.split-content {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.split-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.split-image {
    min-height: 400px;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 1rem;
}

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

/* Trust Block */
.trust-block {
    background: var(--primary-color);
    color: var(--background-white);
    padding: 4rem 2rem;
    text-align: center;
}

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

.trust-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.trust-block p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

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

.step {
    margin-bottom: 2.5rem;
}

.step-number {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--background-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 2rem;
    background: var(--background-light);
}

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

.services-showcase h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.service-card {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--background-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: var(--accent-color);
    transform: scale(1.02);
}

/* Testimonials */
.testimonial-split {
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    padding: 4rem 2rem;
    background: var(--background-light);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
}

blockquote p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

cite {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
}

.testimonial-image {
    min-height: 400px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 2rem;
    background: var(--background-white);
}

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

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

.form-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

.final-cta h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

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

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

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: var(--background-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1500;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-content,
    .hero-image {
        flex: 1;
    }

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

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

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

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

    .split-content {
        padding: 5rem 3rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonial-split {
        flex-direction: row;
    }

    .testimonial-content,
    .testimonial-image {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

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

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

/* Desktop Styles */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .split-content {
        padding: 6rem 4rem;
    }

    .services-grid {
        flex-direction: row;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .services-showcase h2 {
        font-size: 2.8rem;
    }
}

/* Page-specific Styles */
.page-header {
    background: var(--background-light);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.page-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 0.7rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.info-block {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-block p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--background-white);
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.selected-service {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: inline-block;
}

.selected-service strong {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
    }

    .info-block {
        flex: 1;
    }
}
