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

:root {
    --primary: #b8436e;
    --primary-dark: #8e3356;
    --secondary: #f5e6eb;
    --accent: #d4a574;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #faf8f9;
    --bg-alt: #f0e8ec;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Navigation */
.nav-wrapper {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: relative;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

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

/* Split Section Layout */
.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

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

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

.split-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184,67,110,0.1) 0%, transparent 100%);
}

/* Hero Section */
.hero-split {
    min-height: 90vh;
}

.hero-split .split-content {
    padding: 80px 100px;
    background: var(--bg-light);
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 450px;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184,67,110,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Section Titles */
.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
}

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

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

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-body {
    padding: 30px;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Features Split */
.features-split {
    background: var(--bg-alt);
}

.features-list {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

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

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

.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

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

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

.author-info h5 {
    font-size: 1rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.process-steps {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.cta-banner .section-title {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner .section-desc {
    color: rgba(255,255,255,0.9);
    margin: 0 auto 35px;
}

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

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

/* Contact Form */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.contact-detail h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sticky-cta .btn-primary {
    box-shadow: 0 10px 40px rgba(184,67,110,0.4);
    padding: 18px 32px;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
}

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

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

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

.thanks-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* About Page */
.about-hero {
    background: var(--bg-alt);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero .section-title {
    font-size: 2.8rem;
}

.about-content {
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 25px;
}

/* Legal Pages */
.legal-page {
    padding: 100px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

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

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

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

    .split-visual {
        min-height: 300px;
    }

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

    .hero-title {
        font-size: 2.4rem;
    }

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

    .service-card {
        flex: 1;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-step::after {
        display: none;
    }

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

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

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

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .sticky-cta .btn-primary {
        width: 100%;
        text-align: center;
    }
}
