:root {
    --color-primary: #2d5a45;
    --color-secondary: #8fb39a;
    --color-accent: #e8a54b;
    --color-dark: #1a332a;
    --color-light: #f7f9f7;
    --color-cream: #faf8f5;
    --color-text: #2c3e36;
    --color-muted: #6b7c74;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 4px 20px rgba(45, 90, 69, 0.12);
    --shadow-medium: 0 8px 32px rgba(45, 90, 69, 0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-light);
}

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-header {
    background: var(--color-dark);
    padding: 0;
    position: relative;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-light);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: none;
    flex-direction: column;
    background: var(--color-dark);
    padding: 20px;
    gap: 0;
}

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

.nav-menu a {
    color: var(--color-light);
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu a:last-child {
    border-bottom: none;
}

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

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        background: transparent;
        padding: 0;
        gap: 32px;
    }

    .nav-menu a {
        padding: 0;
        border-bottom: none;
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 165, 75, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--color-light);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .hero {
        padding: 100px 0 120px;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        flex: 1;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-image {
        flex: 1;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

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

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

/* Sections */
.section {
    padding: 70px 0;
}

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

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

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

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.section-dark .section-header h2,
.section-primary .section-header h2 {
    color: var(--color-light);
}

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

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

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }

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

/* Services Cards */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

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

.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-price .unit {
    color: var(--color-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

/* Features */
.features-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-dark);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.feature-content p {
    color: var(--color-muted);
}

@media (min-width: 768px) {
    .features-flex {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (min-width: 1024px) {
    .feature-item {
        flex: 1 1 calc(25% - 30px);
    }
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    position: relative;
}

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

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

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

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

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--color-dark);
}

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

@media (min-width: 768px) {
    .testimonials-wrapper {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

/* About Split */
.about-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

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

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 5px;
}

@media (min-width: 768px) {
    .about-split {
        flex-direction: row;
        align-items: center;
    }

    .about-image,
    .about-content {
        flex: 1;
    }

    .about-content h2 {
        font-size: 2.4rem;
    }
}

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-light);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 70px 50px;
    }

    .cta-box h2 {
        font-size: 2.2rem;
    }
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    background: var(--color-cream);
    padding: 30px;
    border-radius: var(--radius-md);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item-text h4 {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 400;
    margin-bottom: 3px;
}

.contact-item-text p {
    color: var(--color-dark);
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--color-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e5e2;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: white;
}

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

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

@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
    }

    .contact-info,
    .contact-form {
        flex: 1;
    }
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(25% - 30px);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--color-accent);
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
    padding: 16px 28px;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--color-dark);
}

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
}

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

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    padding: 60px 0 70px;
    text-align: center;
    color: var(--color-light);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 10px;
}

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

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

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

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

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

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

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

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-secondary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-dark);
    font-weight: 700;
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .team-member {
        flex: 1 1 calc(33.333% - 20px);
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-muted);
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 15px);
    }
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-dark);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--color-muted);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}
