:root {
    --primary: #1a5f4a;
    --primary-dark: #134236;
    --secondary: #e8b44d;
    --accent: #2d8a6e;
    --text-dark: #1c2a25;
    --text-light: #5a6b63;
    --bg-light: #f7faf8;
    --bg-cream: #faf8f3;
    --bg-dark: #0f1f1a;
    --white: #ffffff;
    --border: #d4dfd8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 17px;
    background: var(--white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

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

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

.ad-disclosure {
    background: var(--bg-dark);
    color: var(--white);
    padding: 8px 24px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.3px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
}

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

.nav-cta::after {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

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

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

.split-image {
    flex: 1;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

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

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

.hero-text {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.25s ease;
}

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

.section {
    padding: 100px 0;
}

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

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

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

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

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

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

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    flex: 1 1 340px;
    max-width: 400px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

.service-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

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

.split-about-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;
    position: relative;
}

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

.split-about-content {
    flex: 1;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.25;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
}

.stats-row {
    display: flex;
    gap: 48px;
    padding: 48px 0;
    border-top: 1px solid var(--border);
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    flex: 1 1 360px;
    max-width: 420px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 32px;
    font-size: 72px;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--primary);
}

footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 32px;
}

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

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

.footer-col:first-child {
    flex: 1 1 320px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 10px;
}

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

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

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

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

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

.page-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-wrapper p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 16px;
}

.content-wrapper ul {
    margin-left: 24px;
    margin-bottom: 24px;
    color: var(--text-light);
}

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

.contact-split {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--white);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

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

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

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

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

.thanks-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 36px;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

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

.cookie-accept:hover {
    background: #d4a043;
}

.cookie-reject {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.2);
}

.disclaimer {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 12px;
    margin: 48px 0;
    border-left: 4px solid var(--secondary);
}

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

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-detail-row {
    display: flex;
    gap: 48px;
    align-items: center;
}

.service-detail-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    position: relative;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-desc {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 16px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-detail-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-content {
        padding: 60px 32px;
    }

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

    .hero-title {
        font-size: 38px;
    }

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

    .split-about-image {
        min-height: 320px;
    }

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

    .service-detail-row,
    .service-detail-row:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .section {
        padding: 64px 0;
    }

    .stats-row {
        flex-direction: column;
        gap: 32px;
    }

    .stat-item {
        text-align: left;
    }

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

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

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

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

    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
