/* 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: #333;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

/* Header Styles */
.header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.benefits ul {
   
    margin-top: 3rem;
}

.benefits h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: -15px;
}
.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.logo p {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #333;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: #666;
    font-weight: 500;
}

.cta-button {
    background: #333;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #555;
}

/* Hero Section */
.hero {
    background: url('Badkamerheronieuw.jpg') center/cover no-repeat;
    background-color: #f8f9fa;
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    color: white;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.rating span {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
}

.highlight {
    color: #ffd700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.primary-button {
    background: yellow;
    color: #333;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.primary-button:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: white;
    background: #ffed4a;
      transform: translateY(-2px);
}

.stats {
    display: flex;
    gap: 50px;
}

.stat h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat p {
    font-size: 14px;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.section-label {
    background: #f8f9fa;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 24px;
    margin-bottom: 20px;
}

.service-price {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    background: #ffd700;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '•';
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.portfolio-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.portfolio-item h3 {
    padding: 20px 30px 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.portfolio-meta {
    padding: 0 30px 30px;
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial .stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

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

.client-avatar {
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.client-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.client-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-style: normal;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.about-image {
    height: 400px;
    background: #ddd;
    border-radius: 12px;
    position: relative;
    background: url('Afwasbak\ \(1\).jpg') center/cover no-repeat;
}

.about-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.about-stats .stat h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.about-stats .stat p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* contact form */

.contact-form {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.contact-form .subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-submit-btn {
    background: #ffd700;
    color: #333;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.form-submit-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.contact {
    padding: 100px 0;
    background: white;
}

.contact .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact .contact-form {
        margin: 0 20px;
        padding: 40px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand p:first-of-type {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-brand p:last-of-type {
    color: #ccc;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-icon {
    font-size: 16px;
}

.social-media {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hamburger menu */
    .hamburger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        gap: 20px;
    }
    
    .nav a {
        font-size: 18px;
        color: #333;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    /* Header */
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    
    .contact-info {
        display: none;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio */
   @media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr; /* Alleen op mobiel onder elkaar */
    }
}
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

@media (max-width: 768px) {
    .hero-content {
        position: absolute !important;
        top: 120px !important; /* Zet vast op 120px van bovenkant */
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}



/* ===== ONZE DIENSTEN PAGINA STYLING ===== */

/* Services Page Hero Section */
.services-page .hero {
    background: url('Dienstenheronieuw.jpg') center/cover no-repeat;
    background-color: #f8f9fa;
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.services-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.services-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    text-align: center;
}

.services-page .hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-page .hero .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-page .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.services-page .location-badge {
    background: rgba(255, 215, 0, 0.9);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 30px;
}

/* Main Services Grid */
.services-page .main-services {
    padding: 100px 0;
    background: white;
}

.services-page .main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.services-page .main-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.services-page .main-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Service Images als achtergrond */
.services-page .service-image-1 {
    height: 250px;
    background: url('diensten\ foto2\ \(1\).jpg') center/cover no-repeat;
    position: relative;
}

.services-page .service-image-2 {
    height: 250px;
    background: url('diensten\ foto\ 3\ \(1\).jpg') center/cover no-repeat;
    position: relative;
}

.services-page .service-image-3 {
    height: 250px;
    background: url('diensten\ foto4\ \(1\).jpg') center/cover no-repeat;
    position: relative;
}

.services-page .service-image-4 {
    height: 250px;
    background: url('diensten\ foto5\ \(1\).jpg') center/cover no-repeat;
    position: relative;
}

.services-page .service-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.services-page .service-content {
    padding: 30px;
}

.services-page .service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.services-page .service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.services-page .service-features {
    list-style: none;
    margin-bottom: 20px;
}

.services-page .service-features li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.services-page .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Additional Services Grid */
.services-page .additional-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-page .additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.services-page .additional-service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.services-page .additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-page .service-price-badge {
    background: #ffd700;
    color: #333;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.services-page .additional-service-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.services-page .additional-service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Why Choose Us Section */
.services-page .why-choose-us {
    padding: 100px 0;
    background: white;
}

.services-page .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.services-page .why-item {
    text-align: center;
    padding: 20px;
}

.services-page .why-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.services-page .why-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.services-page .why-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section for Services Page */
.services-page .services-contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-page .services-contact h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.services-page .services-contact .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-page .contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.services-page .contact-option {
    text-align: center;
}

.services-page .contact-btn {
    background: #ffd700;
    color: #333;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.services-page .contact-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.services-page .contact-btn.secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.services-page .contact-btn.secondary:hover {
    background: #333;
    color: white;
}

/* Contact Form Section - hergebruik bestaande styling */
.services-page .contact {
    padding: 100px 0;
    background: white;
}

.services-page .contact .contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    position: relative;
}

.services-page .contact-form::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

/* Responsive Design voor Services Page */
@media (max-width: 768px) {
    .services-page .hero {
        height: 60vh;
        padding-top: 120px;
    }
    
    .services-page .hero h1 {
        font-size: 32px;
    }
    
    .services-page .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-page .main-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-page .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-page .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-page .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .services-page .contact .contact-form {
        margin: 0 20px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .services-page .additional-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer styling voor Services Page */
.services-page .footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 40px;
}

.services-page .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.services-page .footer-brand h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.services-page .footer-brand p:first-of-type {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.services-page .footer-brand p:last-of-type {
    color: #ccc;
    line-height: 1.6;
}

.services-page .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.services-page .contact-icon {
    font-size: 16px;
}

.services-page .social-media {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.services-page .social-media p {
    color: #999;
    font-size: 14px;
    text-align: center;
}

/* Footer responsive voor services page */
@media (max-width: 768px) {
    .services-page .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-page .social-media {
        gap: 15px;
    }
}



/* Onze recente projecten pagina */

.recent-projects {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

/* ========================================
   SECTION HEADER
   ======================================== */

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, );
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   PROJECTS GRID
   ======================================== */

.projects-grid {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ========================================
   PROJECT IMAGES
   ======================================== */

.project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 750px;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    transition: transform 0.3s ease;
}

.project-card:hover .image-placeholder {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   PROJECT INFO
   ======================================== */

.project-info {
    padding: 30px;
    position: relative;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-location {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
    margin: 0;
}

.project-date {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.project-type {
    font-size: 1.3rem;

    margin: 0 0 15px 0;
    font-weight: 700;
}

.project-description {
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 1rem;
}

.project-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

/* ========================================
   PROJECT BACKGROUND IMAGES
   ======================================== */

/* Project 1 - Badkamer Voor/Na */
.project-card:nth-child(1) .image-container.before .image-placeholder {
    background: url('voornaduo1.1nieuw.jpg') center/cover no-repeat;
    background-color: #e2e8f0;
}

.project-card:nth-child(1) .image-container.after .image-placeholder {
    background: url('voornaduo1.1\ \(1\).jpg') center/cover no-repeat;
    background-color: #e2e8f0;
}

/* Project 2 - Keuken Voor/Na */
.project-card:nth-child(2) .image-container.before .image-placeholder {
    background: url('voornaduo1.3\ \(1\).jpg') center/cover no-repeat;
    background-color: #e2e8f0;
} 

.project-card:nth-child(2) .image-container.after .image-placeholder {
    background: url('onzedienst2\ \(1\).jpg') center/cover no-repeat;
    background-color: #e2e8f0;
}

/* Project 3 - Woonkamer Voor/Na */
.project-card:nth-child(3) .image-container.before .image-placeholder {
    background: url('Lastminute1.jpg') center/cover no-repeat;
    background-color: #e2e8f0;
}

.project-card:nth-child(3) .image-container.after .image-placeholder {
    background: url('lastminute2.jpg') center/cover no-repeat;
    background-color: #e2e8f0;
}


.project-card:nth-child(4) .image-container.before .image-placeholder {
    background: url('wcduo1.jpeg') center/cover no-repeat;
    background-color: #e2e8f0;
}

.project-card:nth-child(4) .image-container.after .image-placeholder {
    background: url('wcduo1.1.jpeg') center/cover no-repeat;
    background-color: #e2e8f0;
}


/* Project 5 - Hoofddorp Voor/Na */
.project-card:nth-child(5) .image-container.before .image-placeholder {
    background: url('Renovatiedouch1\ \(2\).jpeg') center/cover no-repeat;
    background-color: #e2e8f0;
}

.project-card:nth-child(5) .image-container.after .image-placeholder {
    background: url('renovatiedouch2\ \(1\).jpeg') center/cover no-repeat;
    background-color: #e2e8f0;
}

/* Project 6 - Purmerend Voor/Na */
.project-card:nth-child(6) .image-container.before .image-placeholder {
    background: url('Reno2\ \(1\).jpeg') center/cover no-repeat;
    background-color: #e2e8f0;
}

.project-card:nth-child(6) .image-container.after .image-placeholder {
    background: url('Reno1\ \(1\).jpeg') center/cover no-repeat;
    background-color: #e2e8f0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .recent-projects {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .project-images {
        height: 250px;
    }
    
    .project-info {
        padding: 25px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .project-type {
        font-size: 1.2rem;
    }
    
    .image-label {
        bottom: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .projects-grid {
        gap: 30px;
    }
    
    .project-images {
        height: 200px;
    }
    
    .project-info {
        padding: 20px;
    }
}

/* ========================================
   OVER ONS PAGINA STYLING
   ======================================== */

/* Hero Section */
.over-ons-page .hero {
    background: url('Overonsheronieuw.jpg') center/cover no-repeat;
    background-color: #f8f9fa;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.over-ons-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.over-ons-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    text-align: center;
}

.over-ons-page .hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.over-ons-page .hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.over-ons-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.over-ons-page .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.over-ons-page .stat-icon {
    font-size: 20px;
}

/* Waarom Anders Section */
.over-ons-page .why-different {
    padding: 100px 0;
    background: white;
}

.over-ons-page .different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.over-ons-page .different-item {
    text-align: center;
    padding: 30px 20px;
}

.over-ons-page .different-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    border: 3px solid #3b82f6;
}

.over-ons-page .different-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.over-ons-page .different-item p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.over-ons-page .process-section {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
    margin-top: 60px;
}

.over-ons-page .process-section h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.over-ons-page .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.over-ons-page .process-step {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.over-ons-page .step-number {
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.over-ons-page .process-step p {
    color: #666;
    font-weight: 500;
    line-height: 1.5;
}

/* Team Section */
.over-ons-page .team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.over-ons-page .team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.over-ons-page .team-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.over-ons-page .team-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.over-ons-page .team-features h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.over-ons-page .team-features > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.over-ons-page .certifications {
    margin-bottom: 25px;
}

.over-ons-page .cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
}

.over-ons-page .cert-icon {
    color: #ffd700;
    font-weight: bold;
}

.over-ons-page .certification-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.over-ons-page .badge {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.over-ons-page .team-image {
    height: 500px;
    background-color: #e2e8f0;
    border-radius: 16px;
    position: relative;
}

/* Specialisaties */
.over-ons-page .specializations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.over-ons-page .spec-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.over-ons-page .spec-item:hover {
    transform: translateY(-5px);
}

.over-ons-page .spec-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    border: 2px solid #ffd700;
}

.over-ons-page .spec-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.over-ons-page .spec-item p {
    color: #666;
    line-height: 1.6;
}

/* Core Values Section */
.over-ons-page .core-values {
    padding: 100px 0;
    background: white;
}

.over-ons-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.over-ons-page .value-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.over-ons-page .value-card:hover {
    border-color: #3b82f6
}


@media (max-width: 768px) {
    /* Over Ons responsive - gebruik .over-ons-page */
    .over-ons-page .hero h1 {
        font-size: 32px;
    }
    
    .over-ons-page .hero p {
        font-size: 16px;
    }
    
    .over-ons-page .different-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .over-ons-page .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .over-ons-page .team-image {
        height: 300px;
    }
    
    .over-ons-page .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .over-ons-page .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .over-ons-page .specializations {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.over-ons-page .footer-content {
        grid-template-columns: 1fr;  /* Single column op mobiel */
        gap: 30px;  /* Kleinere gap */
        text-align: center;
    }
    
    .over-ons-page .footer {
        padding: 40px 0 20px;  /* Minder padding */
        width: 100%;
    }
    
  

    .over-ons-page .footer {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 40px 0 20px !important;
    position: relative !important;
}

.contact-item a {
    text-decoration: none;
    color: inherit; /* Neemt de kleur over van het parent element */
    display: flex;
    align-items: center;
}

.contact-item a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.contact-item a:visited {
    color: inherit; /* Voorkomt paarse kleur na bezoek */
}





@media (max-width: 480px) {
    .over-ons-page .hero h1 {
        font-size: 28px;
    }
    
    .over-ons-page .different-icon {
        width: 60px;
        height: 60px;
    }
    
    .over-ons-page .process-section {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-secondary {
    background: white;
    color: black;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
}

.btn-secondary {
    background: white;
    color: black;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    margin-top: -50px;
    
}


/* Voeg dit toe aan je CSS - alleen voor desktop */
@media (min-width: 769px) {
    .hero-content {
        max-width: 1400px; /* Groter maken */
        padding: 0 20px 0 100px; /* Naar rechts schuiven door meer padding links */

    }
    
    .hero h1 {
        font-size: 56px; /* Groter op desktop */
        max-width: 900px; /* Meer ruimte */
    }
    
    .hero p {
        font-size: 20px; /* Iets groter */
        max-width: 700px; /* Meer ruimte */
    }
    
    .benefits ul {
        font-size: 25px; /* Groter lettertype */
    }
}