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

:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary: #8bb174;
    --accent: #c4a35a;
    --text-dark: #1a1a1a;
    --text-light: #f8f6f2;
    --bg-light: #fafaf8;
    --bg-cream: #f4f1eb;
    --bg-sage: #e8ede5;
    --shadow: rgba(45, 90, 61, 0.12);
}

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;
    transition: color 0.3s ease;
}

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
}

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

.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: 4px 0;
}

.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,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 6px;
    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: 8px;
}

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

/* Split Section Base */
.split-section {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

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

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

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

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

.split-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.2), transparent);
}

/* Hero Section */
.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
}

.hero .split-content {
    padding: 100px 80px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

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

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

.hero-text {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-accent:hover {
    background: #b39248;
    transform: translateY(-3px);
}

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

.section-title {
    font-size: 2.6rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 540px;
}

/* Stats Strip */
.stats-strip {
    background: var(--primary-dark);
    padding: 60px 0;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
}

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

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

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

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

.service-card {
    flex: 1 1 340px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px var(--shadow);
    transition: all 0.4s ease;
}

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

.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.08);
}

.service-body {
    padding: 28px;
}

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

.service-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}

/* About Split */
.about-split {
    background: var(--bg-cream);
}

.about-split .split-content {
    background: white;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

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

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

.about-feature-text p {
    color: #666;
    font-size: 0.9rem;
}

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

.testimonials-section .section-label,
.testimonials-section .section-title {
    color: var(--text-light);
    text-align: center;
}

.testimonials-section .section-label {
    color: var(--secondary);
}

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

.testimonial-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
}

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

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

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

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

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1 1 260px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

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

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

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

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

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

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

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

.cta-banner .btn:hover {
    background: var(--bg-cream);
    transform: translateY(-3px);
}

/* Contact Split */
.contact-split {
    background: var(--bg-sage);
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

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

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

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

.contact-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Form Styles */
.form-container {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.form-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

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

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

.footer-brand {
    flex: 1 1 300px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-reject {
    background: #e5e5e5;
    color: var(--text-dark);
}

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

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

.sticky-cta .btn {
    box-shadow: 0 10px 40px var(--shadow);
    padding: 14px 28px;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

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

/* Content Pages */
.content-page {
    padding: 80px 0;
}

.content-page .container {
    max-width: 900px;
}

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

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

.content-page p {
    color: #444;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-page ul {
    margin: 16px 0 16px 24px;
    color: #444;
}

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

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 80px;
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
}

.thanks-content {
    text-align: center;
    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 32px;
}

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

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

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

.thanks-service {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 8px 30px var(--shadow);
}

.thanks-service h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

/* About Page Specific */
.team-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.team-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    text-align: center;
}

.team-image {
    height: 200px;
    background: var(--bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-info {
    padding: 24px;
}

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

.team-info span {
    color: var(--secondary);
    font-size: 0.9rem;
}

.team-info p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 12px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
}

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

.value-item {
    flex: 1 1 300px;
    display: flex;
    gap: 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-sage);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.value-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Page */
.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 0;
}

.service-full {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-full-image {
    flex: 1 1 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

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

.service-full-content {
    flex: 1 1 400px;
}

.service-full-content h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-full-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-full-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

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

.service-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

/* Contact Page Full */
.contact-page-section {
    padding: 80px 0;
}

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

.contact-details {
    flex: 1 1 350px;
}

.contact-form-wrap {
    flex: 1 1 450px;
}

.contact-card {
    background: var(--bg-sage);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.map-placeholder {
    height: 250px;
    background: var(--bg-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

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

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .split-section {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .split-visual {
        height: 400px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .stats-inner {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

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

    .footer-grid {
        gap: 40px;
    }

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

    .service-full {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

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

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

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}
