/* --- HERO SECTIE --- */

/* --- SECTION TITLES --- */
.section-title h2 {
    color: #ffffff; /* ✓ WIT */
}

.section-title p {
    color: #d0d0d0; /* ✓ LICHTGRIJS */
}

.hero {
    background: linear-gradient(135deg, rgba(0, 77, 44, 0.25), rgba(55, 177, 73, 0.15)),
                url('../background2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(55, 177, 73, 0.1) 0%, transparent 90%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 4px 12px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content .tagline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.98);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* --- USP SECTIE --- */
.usp-section {
    background: linear-gradient(180deg, #2a2a2a 0%, #353535 100%); /* ✓ LICHTER DONKER */
    padding: 5rem 0;
}

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

.usp-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.usp-item:hover {
    transform: translateY(-5px);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #36B149; /* ✓ PROMINENT GROEN */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(54, 177, 73, 0.5); /* ✓ GROENE GLOW */
}

.usp-item h3 {
    margin-bottom: 1rem;
    color: #ffffff; /* ✓ WIT */
}

.usp-item p {
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    line-height: 1.7;
}

/* --- DIENSTEN SECTIE --- */
.services {
    padding: 6rem 0;
    background-color: #2a2a2a; /* ✓ LICHTER DONKER */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ✓ VASTE 4 KOLLOMEN */
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #353535; /* ✓ LICHTER DONKERGRIJS */
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid #36B149; /* ✓ AANGEPAST NAAR GROEN */
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(55, 177, 73, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none; /* ✓ FIX */
}


.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-left-width: 8px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #36B149; /* ✓ PROMINENT GROEN */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(54, 177, 73, 0.4); /* ✓ GROENE GLOW */
}

.service-card h3 {
    color: #ffffff; /* ✓ WIT VOOR DONKERE ACHTERGROND */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #d0d0d0; /* ✓ LICHTGRIJS VOOR LEESBAARHEID */
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-card ul li {
    padding: 0.5rem 0;
    color: #d0d0d0; /* ✓ LICHTGRIJS VOOR LEESBAARHEID */
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #36B149; /* ✓ GROEN */
    font-weight: bold;
}

.service-link {
    color: #36B149; /* ✓ GROEN */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* --- WAAROM ONS SECTIE --- */
.why-us {
    padding: 6rem 0;
    background: #353535; /* ✓ LICHTER DONKER */
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.why-us-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

.why-us-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff; /* ✓ WIT */
}

.why-us-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #2a2a2a; /* ✓ LICHTER DONKER */
    border-radius: 8px;
    transition: transform 0.3s;
    border-left: 3px solid #36B149; /* ✓ GROENE ACCENT */
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #36B149; /* ✓ GROEN */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: #ffffff; /* ✓ WIT */
}

.benefit-item p {
    margin: 0;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
}

/* --- PROJECTEN PREVIEW --- */
.projects-preview {
    padding: 6rem 0;
    background: #2a2a2a; /* ✓ LICHTER DONKER */
}

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

.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    background: #353535; /* ✓ LICHTER DONKER */
    border: 2px solid #36B149; /* ✓ GROENE RAND */
}

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

.project-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #36B149; /* ✓ GROEN */
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    margin-bottom: 0.8rem;
    color: #ffffff; /* ✓ WIT */
}

.project-info p {
    margin-bottom: 1.5rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
}

.project-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    margin-bottom: 1rem;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2a2a2a, #353535); /* ✓ LICHTER DONKER */
    color: var(--white);
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white);
}

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

.testimonial-card {
    background: #3a3a3a; /* ✓ LICHTER DONKER */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid #36B149; /* ✓ GROENE RAND */
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: #454545; /* ✓ NOG LICHTER BIJ HOVER */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(54, 177, 73, 0.3); /* ✓ GROENE GLOW */
}

.stars {
    color: #36B149; /* ✓ GROEN */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #36B149; /* ✓ GROEN */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--white);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* --- CTA SECTIE --- */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(54, 177, 73, 0.3)),
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* ✓ DONKER */
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- PROCESS SECTIE --- */
.process-section {
    padding: 6rem 0;
    background: #353535; /* ✓ LICHTER DONKER */
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    flex-wrap: nowrap;
    padding: 0 1rem;
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
}

/* Pijl tussen stappen */
.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -0.5rem;
    top: 35px;
    font-size: 2rem;
    color: #36B149; /* ✓ GROEN */
    opacity: 0.6;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #36B149; /* ✓ GROEN */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(54, 177, 73, 0.5); /* ✓ GROENE GLOW */
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(54, 177, 73, 0.7); /* ✓ GROENE GLOW */
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #ffffff; /* ✓ WIT */
    font-size: 1.1rem;
}

.process-step p {
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .process-step {
        min-width: 140px;
    }
    
    .process-step h3 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
    }
    
    .process-step {
        flex: 0 0 auto;
        max-width: 250px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* 🔧 FIX 1: Hero achtergrond op mobiel */
    .hero {
        background-attachment: scroll; /* Voorkomt zoom op mobiel */
        background-size: cover;
        background-position: center right; /* Toont de rechter kant met de schilder */
        min-height: 70vh;
        padding: 3rem 1rem;
    }
    
    /* Extra overlay voor betere tekstleesbaarheid op mobiel */
    .hero::before {
        background: radial-gradient(circle at 30% 50%, rgba(0, 77, 44, 0.3) 0%, rgba(0, 0, 0, 0.2) 90%);
    }
    
    /* 🔧 FIX 2: Kleinere teksten op mobiel */
    .hero-content h1 {
        font-size: 2rem; /* Was 2.5rem - nu 20% kleiner */
        margin-bottom: 1rem;
    }
    
    .hero-content .tagline {
        font-size: 0.95rem; /* Was 1.1rem - nu kleiner */
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        font-size: 0.95rem; /* Kleinere buttons */
        padding: 12px 32px;
    }
    
    /* USP Section - kleinere teksten */
    .usp-section {
        padding: 3rem 0;
    }
    
    .usp-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .usp-item h3 {
        font-size: 1.1rem;
    }
    
    .usp-item p {
        font-size: 0.9rem;
    }
    
    /* Services - kleinere teksten */
    .services {
        padding: 3rem 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p,
    .service-card ul li {
        font-size: 0.9rem;
    }
    
    /* Section titles - kleiner */
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
    
    /* Why Us Section */
    .why-us {
        padding: 3rem 0;
    }
    
    .why-us-text h3 {
        font-size: 1.5rem;
    }
    
    .why-us-text p {
        font-size: 0.95rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
    }
    
    /* Projects */
    .projects-preview {
        padding: 3rem 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .project-info p {
        font-size: 0.9rem;
    }
    
    .project-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 3rem 1rem;
        background-attachment: scroll; /* Fix achtergrond op mobiel */
    }
    
    .cta-content h2 {
        font-size: 1.6rem; /* Was 2rem - nu kleiner */
    }
    
    .cta-content p {
        font-size: 0.95rem; /* Was 1.1rem - nu kleiner */
        margin-bottom: 2rem;
    }
    
    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 12px 28px;
    }
    
    /* Process Section */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-step {
        max-width: 100%;
        width: 100%;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step h3 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
}

/* Extra kleine schermen (< 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content .tagline {
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
}

/* Website credit styling - add to your main CSS file */
.website-credit {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.website-credit a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.website-credit a:hover {
    opacity: 1;
    text-decoration: underline;
}