/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a978;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --text: #333;
    --border: #e0d8ce;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Navigation */
.top-bar {
    background: var(--light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

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

.ad-notice {
    color: #666;
    font-style: italic;
}

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

/* Hero Section */
.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.hero-image {
    flex: 1;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

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

/* Split Sections */
.split-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

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

.split-image {
    flex: 1;
    background: var(--accent);
    position: relative;
}

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

.split-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

/* Services Grid */
.services-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.services-header h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    background: var(--light);
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

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

.select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.select-service:hover {
    background: var(--secondary);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.form-container .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.selected-service-display {
    display: none;
    padding: 16px;
    background: var(--light);
    border-left: 4px solid var(--secondary);
    margin-bottom: 24px;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display strong {
    color: var(--primary);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

/* Contact Section */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: var(--light);
}

/* Thanks Page */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--light);
    padding: 60px 50px;
    border-radius: 8px;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: #fff;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.back-home {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.back-home:hover {
    background: var(--primary);
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}

.legal-page .last-updated {
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--primary);
    font-weight: 600;
}

.legal-page h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--primary);
    font-weight: 600;
}

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

.legal-page ul {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

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

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.3s;
}

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

.cookie-reject {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

    .hero-content,
    .split-content {
        padding: 50px 40px;
    }

    .hero-image,
    .split-image {
        min-height: 400px;
    }

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

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 30px 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    nav,
    .top-bar-content {
        padding: 0 20px;
    }

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