:root {
    --primary: #2c3e50;
    --secondary: #c9a961;
    --accent: #8b6914;
    --bg-light: #faf9f7;
    --bg-dark: #1a1a1a;
    --text-dark: #2d2d2d;
    --text-light: #f5f5f5;
    --text-muted: #6b6b6b;
    --border: #e0dcd4;
    --shadow: rgba(0,0,0,0.08);
    --card-bg: #ffffff;
    --fallback-img: #d4cfc5;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.nav-header {
    background: var(--bg-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.nav-menu a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.2s;
    padding: 8px 0;
}

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

.ad-notice {
    background: var(--secondary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 3px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    background: var(--primary);
    color: var(--text-light);
}

.hero-image {
    flex: 1 1 50%;
    min-height: 400px;
    background-color: var(--fallback-img);
    position: relative;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 480px;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.2s;
}

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

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--card-bg);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

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

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

.section-dark .section-header h2 {
    color: var(--secondary);
}

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

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

.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

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

.split-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.split-visual {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: var(--fallback-img);
    min-height: 400px;
    position: relative;
}

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

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

.split-content p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

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

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.service-card-image {
    height: 220px;
    background-color: var(--fallback-img);
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.service-card-body {
    padding: 28px;
}

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

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

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

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

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

.testimonial-card {
    flex: 1 1 340px;
    max-width: 400px;
    background: var(--card-bg);
    padding: 32px;
    border-left: 4px solid var(--secondary);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.section-dark .benefit-item h4 {
    color: var(--text-light);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section-dark .benefit-item p {
    color: rgba(255,255,255,0.7);
}

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary);
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-light);
    transition: border-color 0.2s;
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--bg-dark);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.cta-inline {
    background: var(--secondary);
    padding: 48px;
    text-align: center;
    margin: 60px 0;
}

.cta-inline h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--bg-dark);
}

.cta-inline p {
    margin-bottom: 24px;
    color: var(--bg-dark);
    opacity: 0.85;
}

.cta-inline .btn-dark {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 16px 40px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cta-inline .btn-dark:hover {
    opacity: 0.9;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 16px 28px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 24px;
}

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

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

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

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

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

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

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

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

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

.disclaimer {
    background: #f5f3ef;
    padding: 32px;
    margin-top: 40px;
    border-left: 4px solid var(--text-muted);
}

.disclaimer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-text a {
    color: var(--secondary);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.85;
}

.page-header {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    color: var(--primary);
}

.page-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.page-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.page-content li {
    margin-bottom: 8px;
}

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

.contact-info {
    flex: 1 1 300px;
}

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

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-muted);
}

.thanks-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

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

.thanks-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 3rem;
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 350px;
    min-height: 350px;
    background-color: var(--fallback-img);
    position: relative;
}

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

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

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 280px;
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid var(--border);
}

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

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 24px;
    }

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

    .nav-menu {
        gap: 16px;
    }

    .section {
        padding: 48px 0;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
