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

:root {
    --primary-color: #2C3E50;
    --accent-color: #E67E22;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #D35400;
}

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

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 5%;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding-right: 3rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
    background: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    padding: 8rem 5%;
    display: flex;
    gap: 6rem;
    align-items: center;
    background: var(--bg-light);
}

.intro-left {
    flex: 0 0 45%;
}

.intro-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.label-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.intro-right h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.stats-irregular {
    padding: 6rem 5%;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 200px;
}

.stat-one {
    transform: translateY(-20px);
}

.stat-two {
    transform: translateY(20px);
}

.stat-three {
    transform: translateY(-10px);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

.services-showcase {
    padding: 8rem 5%;
    background: var(--bg-white);
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 5rem;
    padding-left: 10%;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 350px;
}

.service-medium {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
}

.service-small {
    flex: 1 1 calc(35% - 1rem);
    min-width: 280px;
}

.service-medium-alt {
    flex: 1 1 calc(45% - 1rem);
    min-width: 320px;
}

.service-small-alt {
    flex: 1 1 calc(30% - 1rem);
    min-width: 280px;
}

.service-accent {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
}

.service-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.btn-service {
    padding: 0.9rem 1.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-overlap {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: var(--bg-light);
}

.testimonial-image {
    flex: 0 0 40%;
}

.testimonial-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.testimonial-content blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 5rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: normal;
}

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

.process-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
    text-align: center;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.step {
    flex: 1 1 calc(25% - 3rem);
    min-width: 220px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step:hover {
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-one {
    transform: translateY(-20px);
}

.step-two {
    transform: translateY(10px);
}

.step-three {
    transform: translateY(-10px);
}

.step-four {
    transform: translateY(15px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

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

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

.values-cards {
    padding: 8rem 5%;
    background: var(--primary-color);
    color: white;
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-header h2 {
    font-size: 3rem;
    color: white;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.value-highlight {
    background: rgba(230, 126, 34, 0.2);
}

.value-highlight:hover {
    background: rgba(230, 126, 34, 0.3);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.8;
    opacity: 0.9;
}

.cta-section-offset {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: var(--bg-light);
}

.cta-content-block {
    flex: 1;
    max-width: 600px;
}

.cta-content-block h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-content-block p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-cta-large {
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.btn-cta-large:hover {
    background: #D35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.cta-image-accent {
    flex: 0 0 45%;
}

.cta-image-accent img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-offset {
    padding: 8rem 5%;
    background: var(--bg-white);
}

.gallery-offset h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    padding-left: 10%;
}

.gallery-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery-asymmetric img {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-asymmetric img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-asymmetric img:nth-child(1) {
    height: 400px;
}

.gallery-asymmetric img:nth-child(2) {
    height: 320px;
}

.gallery-asymmetric img:nth-child(4) {
    height: 380px;
}

.final-cta-sticky {
    position: sticky;
    bottom: 0;
    z-index: 999;
}

.sticky-cta-bar {
    background: var(--primary-color);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta-bar p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.9rem 2.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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(--accent-color);
}

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

.btn-submit:hover {
    background: #D35400;
}

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

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 5%;
    }

    .hero-content-offset {
        padding-right: 0;
        text-align: center;
    }

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .intro-offset {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 5%;
    }

    .intro-left {
        flex: none;
        width: 100%;
    }

    .intro-left img {
        height: 400px;
    }

    .intro-right {
        padding-left: 0;
    }

    .intro-right h2 {
        font-size: 2rem;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .services-header-offset h2 {
        font-size: 2.2rem;
    }

    .service-grid-asymmetric {
        gap: 1.5rem;
    }

    .service-large,
    .service-medium,
    .service-small,
    .service-medium-alt,
    .service-small-alt,
    .service-accent {
        flex: 1 1 100%;
    }

    .testimonial-overlap {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 5%;
    }

    .testimonial-image {
        flex: none;
        width: 100%;
    }

    .testimonial-image img {
        height: 350px;
    }

    .testimonial-content {
        padding-left: 0;
    }

    .testimonial-content blockquote {
        font-size: 1.2rem;
        padding-left: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-one,
    .step-two,
    .step-three,
    .step-four {
        transform: none;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

    .cta-section-offset {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 5%;
    }

    .cta-content-block {
        text-align: center;
    }

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

    .cta-image-accent {
        flex: none;
        width: 100%;
    }

    .cta-image-accent img {
        height: 350px;
    }

    .gallery-offset h2 {
        padding-left: 0;
        font-size: 2.2rem;
    }

    .gallery-asymmetric img {
        flex: 1 1 100%;
        height: 300px !important;
    }

    .sticky-cta-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

@media (max-width: 640px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-right h2 {
        font-size: 1.7rem;
    }

    .services-header-offset h2 {
        font-size: 1.8rem;
    }

    .process-asymmetric h2,
    .values-header h2,
    .gallery-offset h2 {
        font-size: 2rem;
    }

    .modal-content {
        padding: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }
}
