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

:root {
    --primary: #1a1a1a;
    --secondary: #d4a574;
    --accent: #8b6f47;
    --bg-light: #f5f5f5;
    --bg-dark: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.floating-nav {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--secondary);
    border-left: 2px solid var(--secondary);
    padding-left: 15px;
    margin-left: 10px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    background: var(--primary);
}

.hero-content {
    width: 55%;
    padding: 120px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 50%;
    height: 70%;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background-color: var(--bg-dark);
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.offset-section {
    display: flex;
    align-items: stretch;
    margin: 100px 0;
    position: relative;
}

.offset-content {
    width: 48%;
    padding: 80px 60px;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

.offset-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.offset-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.offset-image {
    position: absolute;
    right: 10%;
    top: -50px;
    width: 45%;
    height: calc(100% + 100px);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-dark);
}

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

.services-grid-asymmetric {
    padding: 120px 80px;
    background: var(--bg-dark);
}

.services-grid-asymmetric h2 {
    font-size: 56px;
    color: var(--text-light);
    margin-bottom: 70px;
    max-width: 600px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 45px 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:nth-child(1) {
    width: calc(60% - 15px);
}

.service-card:nth-child(2) {
    width: calc(40% - 15px);
}

.service-card:nth-child(3) {
    width: calc(35% - 15px);
}

.service-card:nth-child(4) {
    width: calc(65% - 15px);
}

.service-card:nth-child(5),
.service-card:nth-child(6) {
    width: calc(50% - 15px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.service-card h3 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-top: 20px;
}

.overlap-section {
    position: relative;
    padding: 150px 80px 100px;
    background: var(--bg-light);
}

.overlap-content-left {
    max-width: 550px;
    margin-left: 0;
    position: relative;
    z-index: 2;
}

.overlap-content-left h2 {
    font-size: 52px;
    margin-bottom: 30px;
    color: var(--primary);
    line-height: 1.2;
}

.overlap-image-right {
    position: absolute;
    right: 80px;
    top: 50px;
    width: 480px;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-dark);
}

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

.form-section-offset {
    padding: 100px 80px;
    background: var(--primary);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: 120px;
}

.form-container h2 {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
}

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

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

footer {
    background: var(--bg-dark);
    padding: 80px 80px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    max-width: 70%;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--primary);
}

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

.cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.about-hero {
    padding: 150px 80px 80px;
    background: var(--primary);
}

.about-hero h1 {
    font-size: 68px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.about-split {
    display: flex;
    gap: 0;
    margin: 100px 0;
}

.about-text {
    width: 50%;
    padding: 80px 60px;
    background: var(--bg-light);
}

.about-text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--primary);
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-block {
    width: 50%;
    background-color: var(--bg-dark);
}

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

.contact-layout {
    padding: 150px 80px 100px;
    background: var(--bg-light);
}

.contact-layout h1 {
    font-size: 64px;
    margin-bottom: 60px;
    color: var(--primary);
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page {
    padding: 150px 80px 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 56px;
    margin-bottom: 40px;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    padding: 80px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.services-page-hero {
    padding: 150px 80px 80px;
    background: var(--bg-dark);
}

.services-page-hero h1 {
    font-size: 68px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.services-page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
}

.services-detail-section {
    padding: 100px 80px;
    background: var(--bg-light);
}

@media (max-width: 1024px) {
    .floating-nav {
        right: 20px;
        top: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        padding: 100px 40px 60px;
    }

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        clip-path: none;
    }

    .offset-section {
        flex-direction: column;
    }

    .offset-content {
        width: 100%;
        padding: 60px 40px;
    }

    .offset-image {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        height: 400px;
        margin-top: 40px;
    }

    .services-grid-asymmetric {
        padding: 80px 40px;
    }

    .service-card {
        width: 100% !important;
    }

    .overlap-section {
        padding: 100px 40px;
    }

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

    .form-section-offset {
        padding: 80px 40px;
    }

    .form-container {
        margin-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .cookie-banner p {
        max-width: 100%;
    }

    .about-split {
        flex-direction: column;
    }

    .about-text,
    .about-image-block {
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
}
