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

:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a86c;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --gray: #6b6b6b;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

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

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Split */
.hero-split {
    min-height: 100vh;
    display: flex;
    padding-top: 80px;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero-visual svg {
    width: 200px;
    height: 200px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,108,0.3);
}

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

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

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

.btn-dark:hover {
    background: var(--dark);
}

/* Split Sections */
.split-section {
    display: flex;
    min-height: 600px;
}

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-image.pattern-1 {
    background: linear-gradient(45deg, var(--light) 25%, transparent 25%),
                linear-gradient(-45deg, var(--light) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--secondary) 75%),
                linear-gradient(-45deg, transparent 75%, var(--secondary) 75%);
    background-size: 60px 60px;
    background-color: var(--accent);
}

.split-image.pattern-2 {
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px,
        var(--primary) 2px,
        transparent 2px,
        transparent 30px
    );
    background-color: var(--light);
}

.split-image.solid-1 {
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image.solid-2 {
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.split-text h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.split-text h3 {
    font-size: 1.1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.split-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Services */
.services-section {
    padding: 100px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    padding: 45px 35px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.service-price span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
}

.author-info span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Features Strip */
.features-strip {
    background: var(--accent);
    padding: 60px 0;
}

.features-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    text-align: center;
    color: var(--white);
}

.feature-item strong {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Form Styles */
.form-section {
    padding: 100px 0;
    background: var(--light);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

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

.form-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
}

/* Contact Page */
.contact-split {
    display: flex;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

.contact-info {
    flex: 1;
    background: var(--primary);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item div h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item div p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.contact-form-side {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 25px 40px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

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

.cookie-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    padding: 18px 30px;
}

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
}

/* About Page */
.about-intro {
    padding: 100px 0;
}

.about-intro .container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-visual {
    flex: 1;
    height: 450px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Values */
.values-section {
    padding: 100px 0;
    background: var(--light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

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

.thanks-content p {
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content li {
    color: var(--gray);
    margin-bottom: 10px;
    list-style: disc;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 100px 40px;
    box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }

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

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

    .hero-visual {
        min-height: 350px;
    }

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

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

    .split-text {
        padding: 60px 40px;
    }

    .split-image {
        min-height: 350px;
    }

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

    .contact-info,
    .contact-form-side {
        padding: 60px 40px;
    }

    .about-intro .container {
        flex-direction: column;
        gap: 50px;
    }

    .about-visual {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        padding: 15px 20px;
    }

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

    .split-text h2 {
        font-size: 1.8rem;
    }

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

    .form-wrapper {
        padding: 40px 25px;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta .btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    .features-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 50px 25px;
    }

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

    .split-text {
        padding: 50px 25px;
    }

    .services-section,
    .testimonials-section,
    .form-section,
    .about-intro,
    .values-section {
        padding: 70px 0;
    }

    .service-card {
        padding: 35px 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
}
