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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 4rem;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #a3e635;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header-spacer {
    height: 6rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #a3e635;
    color: #1f2937;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background-color: #84cc16;
}

.btn-lime {
    background-color: #a3e635;
    color: #1f2937;
}

.btn-lime:hover {
    background-color: #84cc16;
}

.btn-white {
    background-color: #ffffff;
    color: #1f2937;
}

.btn-white:hover {
    background-color: #f3f4f6;
}

.btn-white-cta {
    background-color: #ffffff;
    color: #84cc16;
}

.btn-white-cta:hover {
    background-color: #f3f4f6;
}

.btn-lime-dark {
    background-color: #65a30d;
    color: #ffffff;
}

.btn-lime-dark:hover {
    background-color: #4d7c0f;
}

.btn-submit {
    width: 100%;
    background-color: #84cc16;
    color: #ffffff;
    padding: 1rem;
}

.btn-submit:hover {
    background-color: #65a30d;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.5));
}

.hero .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 48rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Icons */
.icon-lime {
    color: #a3e635;
    width: 1.5rem;
    height: 1.5rem;
}

.icon-small {
    color: #a3e635;
    width: 1.25rem;
    height: 1.25rem;
}

.icon-tiny {
    width: 1rem;
    height: 1rem;
}

.icon-medium {
    color: #1f2937;
    width: 1.5rem;
    height: 1.5rem;
}

.icon-large {
    color: #a3e635;
    width: 2.5rem;
    height: 2.5rem;
}

.icon-huge {
    color: #a3e635;
    width: 6rem;
    height: 6rem;
}

.icon-btn {
    width: 1.25rem;
    height: 1.25rem;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background-color: #ffffff;
    border-bottom: 2px solid #d9f99d;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a3e635;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #6b7280;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #a3e635;
}

.service-image {
    position: relative;
    height: 16rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.service-image-icon {
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    display: inline;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.service-link {
    color: #a3e635;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.service-link:hover {
    color: #84cc16;
}

/* Additional Services */
.additional-services {
    background-color: #a3e635;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 2px solid #d9f99d;
}

.additional-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.additional-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.additional-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.additional-item p {
    color: #374151;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    transition: box-shadow 0.3s;
}

.why-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: #d9f99d;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.why-icon i {
    color: #84cc16;
    width: 2.5rem;
    height: 2.5rem;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.why-card p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.process-step:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #84cc16;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #6b7280;
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    height: 20rem;
}

.project-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #ffffff;
}

.project-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    color: #e5e7eb;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    color: #84cc16;
    fill: #84cc16;
    width: 1.25rem;
    height: 1.25rem;
}

.review-text {
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: #d9f99d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84cc16;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 700;
    color: #1f2937;
}

.author-location {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #a3e635;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: #84cc16;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    font-size: 1.125rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.contact-werkgebied {
    background-color: #d9f99d;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid #d9f99d;
}

.contact-werkgebied h4 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-werkgebied p {
    color: #374151;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 2px solid #e5e7eb;
}

.contact-form-wrapper h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #9ca3af;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #a3e635;
}

.footer-contact {
    list-style: none;
    color: #9ca3af;
}

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #a3e635;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 6rem;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .section-subtitle {
        font-size: 1.125rem;
    }

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

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .why-grid,
    .projects-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero {
        height: 600px;
    }

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

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

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

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