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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    cursor: pointer;
}

.logo img {
    height: 64px;
    width: auto;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-desktop button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-desktop button:hover,
.nav-desktop button.active {
    color: #16a34a;
    border-bottom-color: #16a34a;
}

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

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile button {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.5rem;
}

.nav-mobile button:hover,
.nav-mobile button.active {
    background: #f0fdf4;
    color: #16a34a;
}

.nav-mobile.show {
    display: flex;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 400px;
    width: auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000;
}

.text-green {
    color: #16a34a;
}

.hero-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    background: #16a34a;
    color: #fff;
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-secondary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

/* Section Styles */
.content-section,
.services,
.why-choose,
.pricing,
.contact-info,
.photo-gallery,
.timeline {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
}

.service-card p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card li {
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    background: #dcfce7;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.feature p {
    color: #6b7280;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.benefits-list ul,
.content-grid ul {
    list-style: none;
}

.benefits-list li,
.content-grid li {
    margin-bottom: 1rem;
    color: #374151;
}

.benefits-box,
.expertise-box {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 1rem;
}

.benefits-box h3,
.expertise-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000;
}

.inspection-areas {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 1rem;
}

.inspection-areas h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.inspection-areas ul {
    list-style: none;
}

.inspection-areas li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* Photo Gallery */
.photo-gallery {
    background: #f9fafb;
}

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

.gallery-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.gallery-content p {
    color: #6b7280;
}

/* Timeline */
.timeline {
    background: #f0fdf4;
}

.timeline-items {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4rem;
    width: 2px;
    height: 2rem;
    background: #16a34a;
}

.timeline-year {
    background: #16a34a;
    color: #fff;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.timeline-content p {
    color: #6b7280;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border: 2px solid #16a34a;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.per-hour {
    font-size: 1rem;
    color: #6b7280;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.875rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-item a {
    color: #16a34a;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #15803d;
}

.contact-item p {
    color: #6b7280;
}

.company-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.company-details h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
}

.company-details a {
    color: #16a34a;
    text-decoration: none;
}

.quick-contact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #000;
}

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

.quick-contact-card {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: block;
}

.quick-contact-card:hover {
    background: #dcfce7;
    transform: translateY(-2px);
}

.quick-contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.quick-contact-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.phone-number,
.email {
    font-size: 1.5rem;
    font-weight: bold;
    color: #16a34a;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #f0fdf4;
    color: #000;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #10b981;
}

.footer-section p,
.footer-section li {
    color: #000;
    margin-bottom: 0.5rem;
}

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

.company-number {
    font-size: 0.875rem;
    color: #9ca3af;
}

.contact-details p {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid #000;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #FFFFFFÒ;
}

.footer-bottom a {
  color: #28a745;       /* vervang door jouw groen */
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;  /* optioneel: onderlijning op hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .content-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .content-section,
    .services,
    .why-choose,
    .pricing,
    .contact-info,
    .photo-gallery,
    .timeline {
        padding: 3rem 0;
    }
    
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}