/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header and Navigation */
header {
    width: 100%;
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: inset 0 -1px 0 rgb(255, 137, 74);
}

.header-logo {
    max-height: 160px;
    width: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

/* Desktop navigation underline effect only */
@media (min-width: 769px) {
    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: rgb(255, 137, 74);
        transition: all 0.3s ease;
    }
}

@media (min-width: 769px) {
    nav ul li a:hover::after,
    nav ul li a.active::after {
        width: 100%;
    }
    
    /* Hide underline when hovering over submenu items */
    .has-submenu:hover > a::after {
        width: 0;
    }
}

nav ul li a.active {
    font-weight: 500;
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 3px solid rgb(255, 137, 74);
    display: block;
    flex-direction: column;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    display: block;
    margin: 0;
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.submenu li:last-child a {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.submenu li a:hover {
    background-color: rgb(255, 137, 74);
    color: white;
    padding-left: 25px;
}

.submenu li a::after {
    display: none;
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
}

/* Main Content */
main {
    flex: 1 0 auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 32px 0px 32px;
    width: 100%;
}

#home {
    text-align: center;
    padding: 4rem 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Index page specific h1 styling */
.about-section h1 {
    margin-bottom: 30px;
}

/* Footer */
footer {
    flex-shrink: 0;
    background-color: white;
    color: #333;
    width: 100%;
    font-size: 0.9em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 20px 20px;
    display: grid;
    grid-template-columns: 0.4fr 0.45fr 0.5fr 1fr;
    gap: 100px;
}

.footer-section h3 {
    display: none;
}

.footer-contact h3 {
    display: block;
    color: #333;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
}

.footer-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation li {
    margin-bottom: 8px;
}

.footer-navigation a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: rgb(255, 137, 74);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day {
    color: #666;
    font-size: 0.9em;
}

.time {
    color: #333;
    font-weight: 500;
    font-size: 0.9em;
}

.footer-contact p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact a {
    color: rgb(255, 137, 74);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: rgb(255, 102, 0);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details p {
    margin: 0;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details a:hover {
    color: rgb(255, 137, 74);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 0.85em;
}

/* Slider Styles */
.slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* This creates a 16:9 aspect ratio (9/16 = 0.5625) */
    box-shadow: 0 1px 0 #e0e0e0;
    background-color: #f0f0f0;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transform: scale(1.01); /* Slightly scale up to prevent any gaps */
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 16px 12px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Breadcrumb styling */
.breadcrumbs {
    font-size: 0.9em;
    color: #666;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ff894a;
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #ff894a;
}

/* Hide breadcrumbs on mobile */
@media (max-width: 768px) {
    .breadcrumbs {
        display: none;
    }
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

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

.about-column p:last-child {
    margin-bottom: 0;
}

.about-column ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.about-column ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    line-height: 1.6;
    color: #555;
}

.about-column ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: rgb(255, 137, 74);
    font-weight: bold;
    font-size: 1.1em;
}

.brand-divider {
    text-align: center;
    padding: 20px 0 0 0;
    position: relative;
}

.brand-divider::before,
.brand-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: rgb(255, 137, 74);
}

.brand-divider::before {
    left: 0;
}

.brand-divider::after {
    right: 0;
}

.brand-logo {
    width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .projects-contact-section h1 {
        font-size: 2em !important;
    }
    
    main {
        padding: 1rem;
    }
    
    .main-content {
        padding: 20px;
        gap: 20px;
    }
    
    .about-section {
        padding: 0px 0px;
    }
    
    .about-section h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    
    .about-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-column ul {
        padding-left: 15px;
    }
    
    .about-column ul li {
        padding: 6px 0 6px 20px;
    }
    
    .about-column ul li::before {
        top: 6px;
        font-size: 1em;
    }
    
    .services-section {
        padding: 0px 0px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        width: 100%;
        /* padding: 1.5rem; */
    }
    
    .service-item h3 {
        font-size: 1.3em;
        margin-bottom: 1rem;
    }
    
    .service-item p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .brand-divider::before,
    .brand-divider::after {
        width: 20%;
    }
    
    .brand-logo {
        width: 100px;
    }
}

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

.services-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.services-section h2 {
    text-align: center;
    color: #333;
    font-size: 1.6em;
    margin-bottom: 30px;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro-left p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-intro-right {
    text-align: left;
    margin-top: -8px;
}

.services-intro-right p {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.services-intro-right ul {
    padding-left: 70px;
    list-style: none;
    text-align: left;
    display: inline-block;
}

.services-intro-right ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    line-height: 1.6;
    color: #555;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

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

.process-marker {
    background-color: rgb(255, 137, 74);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9em;
    flex-shrink: 0;
}

.process-content p {
    color: #555;
    font-size: 1em;
    margin: 0;
    line-height: 1.5;
}

/* Services List Layout - Similar to Projects */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 20px;
}

.service-item {
    margin-bottom: 0;
    position: relative;
    scroll-margin-top: 100px;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 40px;
    padding: 0px 40px;
    align-items: start;
}


.service-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-title h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
    border-bottom: 2px solid rgb(255, 137, 74);
    display: inline-block;
}

.service-title p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1em;
    margin: 0 0 1.5rem 0;
}

.service-title p:last-child {
    margin-bottom: 0;
}

.service-left .projects-section {
    margin-top: 25px;
}

.service-details {
    display: flex;
    flex-direction: column;
}

.service-details h4 {
    border-bottom: 1px solid rgb(255, 137, 74);
    display: inline-block;
    width: fit-content;
    margin-bottom: 6px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.detail-label {
    color: #333;
    font-size: 0.95em;
}

.detail-value {
    color: #333;
    font-size: 0.95em;
}

.service-offerings h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 70px;
    border-bottom: 1px solid rgb(255, 137, 74);
    display: inline-block;
}

.service-reviews-section {
    margin-top: 20px;
}

.service-reviews-section h4,
.projects-section h4 {
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 1px solid rgb(255, 137, 74);
    display: inline-block;
}

.review-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid rgb(255, 137, 74);
}

.review-item p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-style: italic;
}

.review-author {
    color: #777;
    font-size: 0.85em;
    font-weight: 500;
}

.project-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-link {
    color: rgb(255, 137, 74);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: rgb(255, 137, 74);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.no-projects {
    color: #888;
    font-size: 0.9em;
    font-style: italic;
    margin: 0;
}

.no-reviews {
    color: #888;
    font-size: 0.9em;
    font-style: italic;
    margin: 0;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

.offering-item {
    color: #555;
    font-size: 0.9em;
    padding: 4px 0;
    white-space: nowrap;
}

.offering-item::before {
    content: "✓";
    color: rgb(255, 137, 74);
    font-weight: bold;
    margin-right: 8px;
}

.service-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-timeline h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.timeline-marker {
    background-color: rgb(255, 137, 74);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9em;
    flex-shrink: 0;
}

.timeline-content h5 {
    color: #333;
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
}

/* Legacy grid styles for homepage */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid .service-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.services-grid .service-item h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.services-grid .service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Homepage Service Items - Clean house style */
.homepage-service-item {
    background-color: transparent;
    padding: 30px 15px;
    position: relative;
}

.homepage-service-item h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
    border-bottom: 2px solid rgb(255, 137, 74);
    padding-bottom: 8px;
    display: inline-block;
}

.homepage-service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}


.service-link {
    position: absolute;
    bottom: 20px;
    left: 15px;
    text-align: right;
}

/* Service link for Diensten page */
.service-right .service-link {
    position: static;
    text-align: left;
    margin-top: 20px;
}

/* Service links (multiple buttons) for Diensten page */
.service-right .service-links {
    position: static;
    text-align: left;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.meer-informatie-link {
    display: inline-block;
    background-color: rgb(255, 137, 74);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.meer-informatie-link:hover {
    background-color: rgb(255, 102, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 2rem;
    }
    
    .process-timeline {
        gap: 12px;
        margin: 15px 0;
    }
    
    .process-marker {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
    }
    
    .process-content p {
        font-size: 0.9em;
    }
    
    .services-cta-section {
        padding: 30px 20px;
    }
    
    .services-cta-section h3 {
        font-size: 1.4em;
        margin-bottom: 12px;
    }
    
    .services-cta-section p {
        color: #555;
        font-size: 1em;
        margin-bottom: 25px;
    }

    .services-grid .service-item {
        padding: 20px;
    }

    .services-grid .service-item h3 {
        font-size: 1.2em;
    }
    
    .service-link {
        position: absolute;
        bottom: 10px;
        left: 0px;
        text-align: right;
    }
    
    .project-preview-content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 10px;
        padding-bottom: 15px;
        width: 100%;
    }
    
    .project-preview-text {
        flex: 1;
        min-width: 0;
    }
    
    .project-preview-text h5 {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .project-preview-image {
        width: 50px;
        height: 35px;
    }

    /* Homepage Service Items Mobile */
    .homepage-service-item {
        padding: 25px 0;
    }

    .homepage-service-item h3 {
        font-size: 1.2em;
    }
    
    /* Services List Mobile Styles */
    .services-list {
        gap: 40px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px;
    }
    
    /* Restructure service content for mobile using CSS Grid */
    .service-content {
        display: grid;
        grid-template-areas: 
            "title"
            "offerings"
            "details"
            "projects"
            "reviews";
        gap: 30px;
    }
    
    .service-title {
        grid-area: title;
    }
    
    .service-offerings {
        grid-area: offerings;
    }
    
    .service-details {
        grid-area: details;
    }
    
    .projects-section {
        grid-area: projects;
    }
    
    .service-reviews-section {
        grid-area: reviews;
    }
    
    /* Remove the left/right containers on mobile */
    .service-left,
    .service-right {
        display: contents;
    }
    
    /* Mobile styles for service offerings h4 */
    .service-offerings h4 {
        margin-top: 0px;
    }
    
    /* Mobile styles for all h4 elements in services */
    .service-offerings h4,
    .service-details h4,
    .projects-section h4,
    .service-reviews-section h4 {
        font-size: 0.95rem;
    }
    
    .service-right {
        gap: 25px;
    }
    
    .service-title h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .service-title p {
        font-size: 1em;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .offering-item {
        white-space: normal;
    }
    
    .timeline {
        gap: 15px;
    }
    
    .timeline-marker {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
    }
    
    .timeline-content h5 {
        font-size: 0.95em;
    }
    
    .timeline-content p {
        font-size: 0.85em;
    }
    
    .reviews-section {
        margin-top: 15px;
    }
    
    .service-left .projects-section {
        margin-top: 0px;
    }
    
    .reviews-section h4,
    .projects-section h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .review-item {
        padding: 12px;
    }
    
    .review-item p {
        font-size: 0.9em;
    }
    
    .review-author {
        font-size: 0.8em;
    }
    
    .project-link {
        font-size: 0.9em;
        padding: 6px 10px;
    }
}

.projects-contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.projects-contact-section h2 {
    text-align: center;
    color: #333;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.projects-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.6;
}

/* Homepage Projects List Styles */
.homepage-projects-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
}

.homepage-project-item {
    border-bottom: 1px solid rgb(255, 137, 74);
    padding: 30px 0;
}

.homepage-project-item:last-child {
    border-bottom: none;
}

.homepage-project-content {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 30px;
    align-items: center;
}

.homepage-project-text h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

.homepage-project-text p {
    color: #555;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.homepage-project-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage-project-image img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.homepage-project-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage-arrow-link {
    color: rgb(255, 137, 74);
    text-decoration: none;
    font-size: 1.8em;
    font-weight: bold;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.homepage-arrow-link:hover {
    transform: translateX(10px);
}

/* Projects Page Intro */
.projects-contact-section h1 {
    color: #333;
    font-size: 2.5em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.projects-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.projects-intro-left p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.projects-intro-left p:last-child {
    margin-bottom: 0;
}

.projects-intro-right p {
    color: #555;
    line-height: 1.7;
    font-size: 1em;
    margin-bottom: 20px;
}

.projects-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
}

.project-preview-item {
    border-bottom: 1px solid rgb(255, 137, 74);
}

.project-preview-item:last-child {
    border-bottom: none;
}

.project-preview-content {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
}

.project-preview-text h5 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.project-preview-image {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
}

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

.project-preview-arrow-link {
    color: rgb(255, 137, 74);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.project-preview-arrow-link:hover {
    transform: translateX(3px);
    color: rgb(255, 100, 50);
}

/* Projects Page List Styles */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 20px;
}


.project-item {
    margin-bottom: 0;
    position: relative;
    scroll-margin-top: 100px;
}

.project-item .project-content {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 40px;
    padding: 0px 40px;
    align-items: stretch;
}


.project-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-title h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
    border-bottom: 2px solid rgb(255, 137, 74);
    display: inline-block;
}

.project-title p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1em;
    margin: 0;
}

.project-details {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-top: 50px;
}

.project-details h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(255, 137, 74);
    display: inline-block;
    width: fit-content;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #333;
    font-size: 0.95em;
}

.detail-value {
    color: #333;
    font-size: 0.95em;
}

.project-cta {
    text-align: center;
    padding-top: 20px;
    align-self: center;
    margin-top: auto;
}

.project-cta-button {
    display: inline-block;
    background-color: rgb(255, 137, 74);
    color: white;
    padding: 8px 16px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85em;
}

.project-cta-button:hover {
    background-color: rgb(255, 102, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
}

.project-box {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
}

/* Simple orange border around entire container */
.project-box {
    border: 1px solid rgb(255, 137, 74);
}



.project-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.project-info h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.project-info p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1em;
}

.project-gallery {
    position: relative;
    min-height: 300px;
    margin-top: 70px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-gallery h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(255, 137, 74);
    display: inline-block;
    width: fit-content;
    align-self: center;
}

.gallery-label {
    color: #333;
    font-size: 0.9em;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

.image-stack {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.image-card {
    position: absolute;
    width: 280px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
    backface-visibility: hidden;
    will-change: transform;
}

.image-card:nth-child(1) {
    transform: rotate(-8deg) translateY(-10px);
    z-index: 4;
}

.image-card:nth-child(2) {
    transform: rotate(-4deg) translateY(-5px);
    z-index: 3;
}

.image-card:nth-child(3) {
    transform: rotate(2deg) translateY(0px);
    z-index: 2;
}

.image-card:nth-child(4) {
    transform: rotate(6deg) translateY(5px);
    z-index: 1;
}

.image-card:hover {
    transform: scale(1.1) rotate(0deg) translateY(-20px) !important;
    z-index: 10 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
}

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

/* Homepage specific styles */
.project-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-box-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Disable image card hover effects on homepage */
.project-box-link .image-card {
    transition: none !important;
    transform: none !important;
    z-index: inherit !important;
}

.project-box-link .image-card:hover {
    transform: none !important;
    z-index: inherit !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}

.project-box-link .image-card img {
    transition: none !important;
    transform: none !important;
}

.project-box-link .image-card:hover img {
    transform: none !important;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: rgb(255, 137, 74);
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-progress {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-label {
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 137, 74, 0.8);
    color: white;
    border: none;
    padding: 15px 12px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgb(255, 137, 74);
}

.prev-lightbox {
    left: 30px;
}

.next-lightbox {
    right: 30px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-info {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 0;
    padding: 5px 0;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #666;
}

/* Contact Page Styles */
.contact-page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.contact-info-section {
    margin-bottom: 0px;
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 0px;
    align-items: start;
}

.contact-intro-left .contact-intro {
    text-align: left;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1em;
}

.contact-intro-left p {
    color: #555;
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-intro-left .contact-method.werkgebied,
.contact-intro-right .contact-method.werkgebied {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin: 0 auto 25px auto;
    width: fit-content;
}

.contact-intro-left .contact-method.werkgebied h3,
.contact-intro-right .contact-method.werkgebied h3 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-intro-left .contact-method.werkgebied p,
.contact-intro-right .contact-method.werkgebied p {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1em;
}

.contact-intro-left .contact-method.werkgebied p.main-area-text,
.contact-intro-right .contact-method.werkgebied p.main-area-text {
    color: rgb(255, 137, 74);
}

.contact-intro-left .contact-method.werkgebied small,
.contact-intro-right .contact-method.werkgebied small {
    color: #666;
    font-size: 0.9em;
}

.contact-intro-right p {
    color: #555;
    font-size: 1em;
    margin-bottom: 25px;
    font-weight: normal;
}

.faq-nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-items: center;
    gap: 0 20px;
}

.faq-nav-list li {
    margin-bottom: 12px;
    width: 100%;
}

.faq-nav-list a {
    color: rgb(255, 137, 74);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.faq-nav-list a::before {
    content: "•";
    font-size: 1.2em;
    color: rgb(255, 137, 74);
}

.faq-nav-list a:hover {
    color: rgb(255, 102, 0);
}

.faq-nav-list a:hover::before {
    color: rgb(255, 102, 0);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

/*.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}*/

.contact-method h3 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-method p {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1em;
}

.contact-method p a {
    color: rgb(255, 137, 74);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

/*.contact-method p a:hover {
    color: rgb(255, 102, 0);
}*/

.contact-method small {
    color: #666;
    font-size: 0.9em;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1em;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-call,
.cta-email {
    display: inline-block;
    background-color: rgb(255, 137, 74);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    font-size: 0.95em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-call:hover,
.cta-email:hover {
    background-color: rgb(255, 102, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
}

.faq-section {
    margin-top: 40px;
}

.faq-section h2 {
    color: #333;
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/*.faq-category {
    margin-bottom: 50px;
}*/

.faq-category h3 {
    color: rgb(255, 137, 74);
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(255, 137, 74);
    display: inline-block;
}

.faq-questions {
    display: flex;
    flex-direction: column;
}

.faq-question {
    margin-bottom: 0;
}

.faq-question h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question p {
    color: #555;
    line-height: 1.7;
    font-size: 1em;
}

.faq-divider {
    height: 2px;
    background: linear-gradient(90deg, rgb(255, 137, 74) 0%, rgba(255, 137, 74, 0.3) 100%);
    margin: 20px 0;
    border-radius: 1px;
}

.service-section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 137, 74, 0.3) 20%, rgb(255, 137, 74) 50%, rgba(255, 137, 74, 0.3) 80%, transparent 100%);
    margin: 40px 0;
    border-radius: 1px;
}

.project-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 137, 74, 0.3) 20%, rgb(255, 137, 74) 50%, rgba(255, 137, 74, 0.3) 80%, transparent 100%);
    margin: 40px 0;
    border-radius: 1px;
}

.projects-list .project-divider:first-child {
    margin-top: 40px;
}

/* Service Project Items - Minimized Homepage Style */
.service-project-item {
    border-bottom: 1px solid rgb(255, 137, 74);
    padding: 15px 0;
}

.service-project-item:last-child {
    border-bottom: none;
}

.service-project-content {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 20px;
    align-items: center;
}

.service-project-text h5 {
    color: #333;
    font-size: 1.1em;
    margin: 0;
    font-weight: 600;
}

.service-project-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-project-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-project-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-arrow-link {
    color: rgb(255, 137, 74);
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.service-arrow-link:hover {
    transform: translateX(5px);
}

/* Service Review Cards - Minimized Homepage Style */
.service-reviews-section {
    margin-top: 0px;
}
.service-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.service-review-stars .star {
    color: rgb(255, 137, 74);
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.service-review-card {
    background-color: transparent;
    padding: 0;
    transition: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-review-card:hover {
    transform: none;
    box-shadow: none;
}

.service-review-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 10px 0;
    flex-grow: 1;
}

.service-review-author {
    color: #777;
    font-size: 0.9em;
    font-weight: 500;
}

.faq-cta-section {
    text-align: center;
    padding: 0px 40px 40px 40px;
}

.projects-cta-section {
    text-align: center;
    padding: 30px 40px 40px 40px;
}

.services-cta-section {
    text-align: center;
    padding: 30px 40px 40px 40px;
}

.faq-cta-section h3,
.services-cta-section h3 {
    color: #333;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-cta-section p,
.services-cta-section p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1em;
}

.projects-cta-section h3 {
    color: #333;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
}

.projects-cta-section p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Reviews Section Styles */
.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-section h2 {
    text-align: center;
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.reviews-intro {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 0px;
}

.review-card {
    background-color: transparent;
    padding: 30px;
    transition: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: none;
    box-shadow: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: rgb(255, 137, 74);
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.review-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1em;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.review-divider {
    height: 2px;
    background: linear-gradient(90deg, rgb(255, 137, 74) 0%, rgba(255, 137, 74, 0.3) 100%);
    margin: 20px 0 0 0;
    border-radius: 1px;
}

.reviews-cta {
    text-align: center;
    padding: 40px;
    /* margin-top: 40px; */
}

.reviews-cta h3 {
    color: #333;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
}

.reviews-cta p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1em;
}

.reviews-cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.cta-services,
.cta-projects,
.cta-contact {
    display: inline-block;
    background-color: rgb(255, 137, 74);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    font-size: 0.95em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-services:hover,
.cta-projects:hover,
.cta-contact:hover {
    background-color: rgb(255, 102, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
}

@media (max-width: 768px) {
    .homepage-project-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .homepage-project-text {
        flex: 1;
    }
    
    .homepage-project-text p {
        display: none;
    }
    
    .homepage-project-item {
        padding: 25px 0;
    }
    
    .homepage-project-text h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .homepage-project-text p {
        font-size: 0.95em;
    }
    
    .homepage-project-image img {
        width: 100px;
        height: 75px;
    }
    
    .homepage-arrow-link {
        font-size: 1.5em;
        width: 45px;
        height: 45px;
    }
    
    /* Projects Intro Mobile Styles */
    .projects-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .projects-intro-left p {
        font-size: 1em;
        margin-bottom: 15px;
    }
    
    .projects-intro-right p {
        font-size: 0.95em;
        margin-bottom: 15px;
    }
    
    .projects-list {
        gap: 40px;
    }
    
    .project-item .project-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    /* Project Details Mobile Styles */
    .project-details {
        width: 100%;
        margin-top: 20px;
    }
    
    .project-details h4 {
        font-size: 0.95em;
        margin-bottom: 10px;
    }
    
    .detail-row {
        padding: 8px 0;
        font-size: 0.9em;
    }
    
    .project-gallery {
        min-height: 200px;
    }

    .project-box {
        padding: 15px;
        margin-bottom: 0;
        min-height: 350px;
    }

    .project-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-info h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .project-info p {
        font-size: 0.95em;
    }

    .project-gallery {
        min-height: 200px;
        margin-top: 0px !important;
        margin-bottom: 0;
    }
    
    .project-gallery h4 {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    
    /* Project Right Mobile Styles */
    .project-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        margin-top: 0 !important;
    }
    
    /* Project CTA Mobile Styles */
    .project-cta {
        margin-top: 15px !important;
        padding-top: 15px !important;
        align-self: stretch !important;
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .project-cta-button {
        padding: 6px 12px;
        font-size: 0.8em;
        width: 175px;
        white-space: nowrap;
    }
    
    /* Image Stack Mobile */
    .image-stack {
        height: auto;
        min-height: 180px;
        max-height: 220px;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Projects Contact Section Mobile */
    .projects-contact-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0px;
    }
    
    /* Project Content Mobile */
    .project-item .project-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px;
    }
    
    /* Project Title Mobile */
    .project-title p {
        color: #555;
        line-height: 1.6;
        font-size: 0.95em;
        margin: 0;
    }

    .image-card {
        width: 180px;
        height: 135px;
    }
    
    /* Image Stack Mobile - Better Approach */
    .image-stack {
        height: auto;
        min-height: 160px;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-lightbox {
        left: 15px;
    }

    .next-lightbox {
        right: 15px;
    }

    .close-lightbox {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    
    /* Contact Page Mobile Styles */
    .contact-page-section {
        padding: 0px;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info-section {
        margin-bottom: 30px;
    }
    
    .contact-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .contact-intro-left .contact-intro {
        font-size: 1em;
        margin-bottom: 24px;
    }
    
    .contact-intro-right p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    
    .contact-intro-left .contact-method.werkgebied,
    .contact-intro-right .contact-method.werkgebied {
        padding: 15px;
        /* margin-top: 20px; */
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .faq-nav-list a {
        font-size: 0.9em;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .contact-method h3 {
        font-size: 1.1em;
    }
    
    .contact-method p {
        font-size: 1em;
    }
    
    .cta-section h3 {
        font-size: 1.2em;
    }
    
    .cta-section p {
        font-size: 1em;
    }
    
    .cta-buttons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 200px;
    }
    
    .cta-call,
    .cta-email {
        padding: 7px 14px;
        font-size: 0.8em;
        width: 150px;
    }
    
    .faq-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .faq-category:not(:last-child) {
        margin-bottom: 40px;
    }
    
    .faq-category h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 0px;
    }
    
    .faq-question h4 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .faq-question p {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    
    .faq-divider {
        margin: 15px 0;
    }
    
    .service-divider {
        margin: 20px 0;
    }
    
    .service-section-divider {
        margin: 30px 0;
    }
    
    .project-divider {
        margin: 30px 0;
    }
    
    /* Service Project Items Mobile */
    .service-project-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .service-project-text {
        flex: 1;
    }
    
    .service-project-item {
        padding: 12px 0;
    }
    
    .service-project-text h5 {
        font-size: 1em;
    }
    
    .service-project-image img {
        width: 70px;
        height: 50px;
    }
    
    .service-arrow-link {
        font-size: 1.3em;
        width: 35px;
        height: 35px;
    }
    
    /* Service Review Cards Mobile */
    .service-review-stars {
        gap: 1px;
        margin-bottom: 12px;
    }
    
    .service-review-stars .star {
        font-size: 1em;
    }
    
    .service-review-text {
        font-size: 0.95em;
    }
    
    .service-review-author {
        font-size: 0.85em;
    }
    
    .faq-cta-section {
        margin-top: 15px;
        padding: 30px 20px;
    }
    
    .faq-cta-section h3 {
        font-size: 1.4em;
        margin-bottom: 12px;
    }
    
    .faq-cta-section p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    
    .projects-cta-section {
        padding: 30px 20px;
    }
    
    .projects-cta-section h3 {
        font-size: 1.4em;
        margin-bottom: 12px;
    }
    
    .projects-cta-section p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    
    /* Reviews Section Mobile Styles */
    .reviews-section h2 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    .reviews-intro {
        margin-bottom: 30px;
        font-size: 0.95em;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-name {
        font-size: 1em;
    }
    
    .review-text {
        font-size: 0.95em;
    }
    
    .review-divider {
        margin: 15px 0 0 0;
    }
    
    .reviews-cta {
        padding: 0px 20px 25px 20px;
        /* margin-top: 30px; */
    }
    
    .reviews-cta h3 {
        font-size: 1.4em;
        margin-bottom: 12px;
        margin-top: 5px;
    }
    
    .reviews-cta p {
        color: #555;
        font-size: 1em;
        margin-bottom: 25px;
    }
    
    .reviews-cta-buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    /* Homepage buttons - 2 buttons, wider */
    .reviews-cta-buttons .cta-services,
    .reviews-cta-buttons .cta-projects {
        padding: 7px 10px;
        font-size: 0.8em;
        width: 200px;
        white-space: nowrap;
    }
    
    /* Contact page buttons - 2 buttons, wider */
    .cta-buttons .cta-call,
    .cta-buttons .cta-email {
        padding: 7px 14px;
        font-size: 0.8em;
        width: 150px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Diensten and Projecten pages - 1 button, narrower */
    .services-cta-section .cta-contact,
    .projects-cta-section .cta-contact {
        padding: 7px 14px;
        font-size: 0.8em;
        width: 150px;
    }
    
    /* Footer Mobile Styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0px 20px 20px 20px;
        margin-top: -50px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
    
    .footer-section h3 {
        color: #333;
        font-size: 1em;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .footer-navigation ul {
        text-align: center;
    }
    
    .footer-navigation li {
        margin-bottom: 6px;
    }
    
    .hours-list {
        align-items: center;
    }
    
    .hours-item {
        gap: 4px;
        text-align: center;
    }
    
    .day {
        min-width: 80px;
        text-align: left;
    }
    
    .time {
        min-width: 60px;
        text-align: left;
    }
    
    .footer-logo-img {
        display: none;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-details a {
        justify-content: center;
    }
}

p a {
    color: rgb(255, 137, 74);
    text-decoration: none;
    transition: color 0.3s ease;
}

p a:hover {
    color: rgb(255, 102, 0);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 3px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu span:nth-child(1) {
    top: 6px;
}

.hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
    bottom: 6px;
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .hamburger-menu {
        display: block;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        z-index: 999;
        padding-top: 80px;
    }

    nav ul.active {
        display: flex;
    }


    nav ul li {
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 137, 74, 0.2);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Main navigation items only (not submenu) */
    nav ul > li > a {
        color: #333;
        font-size: 1.1em;
        padding: 10px 25px;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    nav ul > li > a:hover {
        background-color: rgba(255, 137, 74, 0.1);
        border-left-color: rgb(255, 137, 74);
        color: rgb(255, 137, 74);
    }

    nav ul > li > a.active {
        color: rgb(255, 137, 74);
        border-left-color: rgb(255, 137, 74);
        background-color: rgba(255, 137, 74, 0.02);
        font-weight: 500;
    }

    /* Reduce bottom padding for Diensten to bring submenu closer */
    nav ul > li.has-submenu > a {
        padding: 10px 25px 5px 25px;
    }

    /* Mobile submenu styles - clean and simple */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        border-left: none;
        max-height: 383px;
        overflow-y: auto;
    }

    .submenu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .submenu li:last-child {
        border-bottom: none;
    }

    .submenu li a {
        color: #666;
        padding: 12px 25px 12px 60px;
        border-bottom: none;
        font-size: 0.9em;
        border-left: none;
        background-color: transparent;
        position: relative;
    }

    .submenu li a::before {
        content: "↳";
        position: absolute;
        left: 45px;
        color: rgb(255, 137, 74);
        font-size: 0.8em;
    }

    .submenu li a:hover {
        color: rgb(255, 137, 74);
        background-color: transparent;
        padding-left: 60px;
    }

    .submenu li a.active {
        color: #666;
        background-color: transparent;
        border-left: none;
    }

    .hamburger-menu.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

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

    .hamburger-menu.active span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
}

/* Service Page Styling */
.service-page-section {
    padding: 0px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-page-section h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0.5rem 0px;
    font-weight: 700;
}

.service-page-section h2 {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.service-page-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-page-section p:last-child {
    margin-bottom: 0;
}

/* Service Page FAQ Layout - 2 column grid */
.service-page-section ~ .faq-section .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .service-page-section ~ .faq-section .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


    
    .service-page-section h2 {
        font-size: 1rem;
    }
    
    .service-page-section p {
        font-size: 1rem;
    }
