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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #f4f4f4;
    --color-accent: #e74c3c;
    --color-text: #333;
    --color-light: #fff;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(231,76,60,0.3));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-light);
    padding: 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-light);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-light);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--color-light);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 15px;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-floating.scrolled {
    background: var(--color-primary);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--color-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--color-light);
    transition: all 0.3s ease;
}

.section-visual-overlay {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
}

.section-visual-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay);
    z-index: 1;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.content-overlay {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--color-light);
}

.section-split {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--color-secondary);
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-primary);
    font-weight: 700;
}

.split-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-text-block {
    position: relative;
    padding: 120px 40px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.image-text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.image-text-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-light);
}

.image-text-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.image-text-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.9;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-visual {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
    background: var(--color-light);
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-cta {
    display: block;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 15px 30px;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.testimonials-section {
    background: var(--color-primary);
    padding: 100px 40px;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    font-size: 3rem;
    color: var(--color-light);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

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

.form-section {
    position: relative;
    padding: 100px 40px;
    background: var(--color-secondary);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-light);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    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(--color-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--color-accent);
    color: var(--color-light);
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--color-accent);
    color: var(--color-light);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 25px 40px;
    display: none;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--color-accent);
    color: var(--color-light);
}

.cookie-accept:hover {
    background: #c0392b;
}

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

.cookie-reject:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.footer {
    background: var(--color-primary);
    color: var(--color-light);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.page-hero {
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, var(--color-primary), #2c3e50);
    text-align: center;
    color: var(--color-light);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-primary);
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.content-section ul {
    margin: 20px 0 20px 30px;
}

.content-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info {
    background: var(--color-secondary);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.thanks-content {
    background: var(--color-light);
    padding: 80px 60px;
    border-radius: 20px;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.thanks-icon {
    font-size: 5rem;
    color: var(--color-accent);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.thanks-cta {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-light);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.thanks-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-split {
        flex-direction: column;
        min-height: auto;
    }

    .split-visual {
        min-height: 50vh;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--color-primary);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        margin: 10px 0;
    }

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

    .split-content {
        padding: 60px 30px;
    }

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

    .image-text-content h2 {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 15px 30px;
        font-size: 1rem;
    }

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

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

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

    .thanks-content {
        padding: 60px 40px;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .services-grid,
    .content-section {
        padding: 0 20px;
    }
}
