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

:root {
    --primary: #2c4a52;
    --secondary: #537a82;
    --accent: #c17f59;
    --light: #f7f4f0;
    --dark: #1a2e33;
    --white: #ffffff;
    --grey: #6b7c80;
    --border: #d4d9da;
}

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;
}

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

button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-left, .split-right {
    flex: 1 1 50%;
    min-width: 300px;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.4rem;
    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;
    color: var(--dark);
    font-weight: 500;
}

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

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--primary);
}

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

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

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

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

.hero-visual {
    flex: 1 1 50%;
    min-width: 300px;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200') center/cover;
    min-height: 500px;
    position: relative;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,74,82,0.2) 0%, transparent 60%);
}

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

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

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

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

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

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

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 50px 0;
}

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

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

.stat-num {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

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

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

.section-image {
    flex: 1 1 50%;
    min-width: 300px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-content {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.section-tag {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-content h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-content p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 20px;
}

.section-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.section-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--dark);
}

.section-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--grey);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-body {
    padding: 30px;
}

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

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

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

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

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

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

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

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

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

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

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

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

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

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

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

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1 1 40%;
    min-width: 280px;
}

.form-info h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-info p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--dark);
}

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

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

.form-container {
    flex: 1 1 55%;
    min-width: 300px;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.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: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-submit:hover {
    background: var(--primary);
}

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

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    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;
}

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

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

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1 1 60%;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

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

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

.cookie-accept {
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-weight: 600;
}

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

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(193,127,89,0.4);
}

.sticky-cta a:hover {
    background: var(--primary);
    transform: scale(1.05);
}

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

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 240px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 8px;
}

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

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

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

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

/* Services Page */
.services-full {
    padding: 100px 0;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-img {
    flex: 1 1 40%;
    min-width: 280px;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1 1 55%;
    min-width: 280px;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--dark);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

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

/* Contact Page */
.contact-full {
    padding: 100px 0;
}

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

.contact-info-full {
    flex: 1 1 40%;
    min-width: 280px;
}

.contact-info-full h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info-full p {
    color: var(--grey);
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-block p {
    color: var(--dark);
    margin-bottom: 0;
}

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

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

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

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

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

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

.selected-service {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
}

.selected-service h3 {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 8px;
}

.selected-service p {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--grey);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    color: var(--grey);
    margin-bottom: 8px;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 100px 40px;
}

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

.mobile-nav a {
    font-size: 1.4rem;
    color: var(--dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.close-nav {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    font-size: 2rem;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

@media (max-width: 768px) {
    .split-left, .split-right {
        flex: 1 1 100%;
    }

    .hero-content {
        padding: 50px 24px;
    }

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

    .section-content {
        padding: 50px 24px;
    }

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

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

    .footer-grid {
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 45%;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

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