/* Subpage Specific Styles */
        .subpage-hero {
            min-height: 70vh;
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
            display: flex;
            align-items: center;
            padding-top: 180px;
            position: relative;
            overflow: hidden;
        }

        .subpage-hero .col-lg-6:first-child {
            padding-right: 4.5rem;
        }

        .subpage-hero .col-lg-6:last-child {
            padding-left: 4.5rem;
        }

        .subpage-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(184, 151, 96, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(184, 151, 96, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        .subpage-hero-content {
            position: relative;
            z-index: 2;
        }

        .breadcrumb-custom {
            background: transparent;
            padding: 0;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .breadcrumb-custom a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--primary-red);
        }

        .breadcrumb-custom .active {
            color: var(--text-dark);
            font-weight: 600;
        }

        .subpage-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .subpage-hero .highlight {
            color: var(--primary-red);
            position: relative;
        }

        .subpage-hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            max-width: 600px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .subpage-hero-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .subpage-hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .parallax-image {
            will-change: transform;
        }

        /* USP Bar */
        .usp-bar {
            background: var(--primary-red);
            padding: 30px 0;
        }

        .usp-items {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .usp-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: white;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

        .usp-item:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .usp-item i {
            font-size: 2rem;
            opacity: 0.95;
        }

        .usp-item span {
            font-size: 0.95rem;
            font-weight: 500;
            opacity: 0.95;
        }

        @media (max-width: 992px) {
            .usp-items {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .usp-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .usp-bar {
                padding: 20px 0;
            }

            .usp-item i {
                font-size: 1.5rem;
            }

            .usp-item span {
                font-size: 0.85rem;
            }
        }

        /* Fixed CTA */
        .fixed-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .fixed-cta.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .fixed-cta-close {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary-red);
            border: none;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(184, 151, 96, 0);
        }

        .fixed-cta-close:hover {
            transform: scale(1.1);
            background: #b4873d;
        }

        .fixed-cta-link {
            text-decoration: none;
            display: block;
        }

        .fixed-cta-content {
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            border: 2px solid var(--primary-red);
            transition: all 0.3s ease;
            min-width: 340px;
        }

        [data-theme="dark"] .fixed-cta-content {
            background: var(--bg-gray);
            border-color: var(--primary-red);
        }

        .fixed-cta-content:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(184, 151, 96, 0);
        }

        .fixed-cta-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--primary-red);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fixed-cta-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .fixed-cta-text {
            flex: 1;
        }

        .fixed-cta-text h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .fixed-cta-text p {
            margin: 4px 0 0;
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.4;
        }

        .fixed-cta-arrow {
            color: var(--primary-red);
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .fixed-cta-content:hover .fixed-cta-arrow {
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .fixed-cta {
                bottom: 10px;
                right: 10px;
                left: 10px;
            }

            .fixed-cta-content {
                min-width: auto;
                padding: 14px 16px;
                gap: 12px;
            }

            .fixed-cta-icon {
                width: 45px;
                height: 45px;
            }

            .fixed-cta-icon i {
                font-size: 1.3rem;
            }

            .fixed-cta-text h4 {
                font-size: 0.95rem;
            }

            .fixed-cta-text p {
                font-size: 0.8rem;
            }
        }

        /* Features Section */
        .features-section {
            background: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            padding: 2.5rem;
            background: var(--bg-gray);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(184, 151, 96, 0.1);
            border-color: var(--primary-red);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border: 2px solid var(--primary-red);
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--primary-red);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--bg-gray);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4/3;
            background: var(--bg-light);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info {
            color: white;
        }

        .gallery-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .gallery-info p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Process Section */
        .process-section {
            background: var(--bg-light);
        }

        .process-timeline {
            position: relative;
            margin-top: 4rem;
        }

        .process-step {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 4rem;
            align-items: flex-start;
        }

        .process-step:last-child {
            margin-bottom: 0;
        }

        .step-number {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            position: relative;
        }

        .process-step:not(:last-child) .step-number::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 60px;
            background: var(--border-color);
        }

        .step-content {
            flex: 1;
            padding-top: 0.5rem;
        }

        .step-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .step-content p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .step-details {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .step-detail {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-gray);
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .step-detail i {
            color: var(--primary-red);
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--bg-gray);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 2.5rem;
            border: 2px solid var(--border-color);
            transition: all 0.4s ease;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-red);
        }

        .pricing-card.featured {
            border-color: var(--primary-red);
            box-shadow: 0 10px 40px rgba(184, 151, 96, 0.15);
        }

        .pricing-badge {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }

        .pricing-card .price-note {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features i {
            color: var(--primary-red);
            flex-shrink: 0;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-light);
        }

        .faq-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-item {
            background: var(--bg-gray);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-red);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            user-select: none;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        .faq-question i {
            font-size: 1.5rem;
            color: var(--primary-red);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* CTA Box */
        .cta-box {
            background: var(--bg-light);
            border: 2px solid var(--border-color);
            border-radius: 8px 24px 8px 24px;
            padding: 50px 40px;
            margin: 60px 20px;
            text-align: center;
            transform: scale(0.95);
            opacity: 0.8;
            transition: all 0.6s ease;
        }

        .cta-box.cta-scaled {
            transform: scale(1);
            opacity: 1;
        }

        .cta-box-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-box-text {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-box-button {
            background: var(--primary-red);
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .cta-box-button:hover {
            transform: translateY(-2px);
            background: #b4873d;
            color: white;
            border-radius: 18px 6px 18px 6px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .subpage-hero {
                min-height: 60vh;
                padding-top: 100px;
            }

            .subpage-hero h1 {
                font-size: 2.25rem;
            }

            .subpage-hero-subtitle {
                font-size: 1.1rem;
            }

            .subpage-hero .col-lg-6:first-child {
                padding-right: 15px;
            }

            .subpage-hero .col-lg-6:last-child {
                padding-left: 15px;
                margin-top: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .process-step {
                flex-direction: column;
                gap: 1.5rem;
            }

            .step-number::after {
                display: none;
            }
        }
   

        /* Services Detail Section */
        .services-detail-section {
            background: var(--bg-light);
            padding: 80px 0;
        }

        .service-detail-card {
            background: var(--bg-gray);
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            border: 2px solid var(--border-color);
            transition: all 0.4s ease;
        }

        .service-detail-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-red);
        }

        .service-detail-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary-red) 0%, #b4873d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .service-detail-icon i {
            font-size: 2rem;
            color: white;
        }

        .service-detail-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-detail-card > p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-detail-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0 0;
        }

        .service-detail-list li {
            padding: 0.75rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            line-height: 1.6;
        }

        .service-detail-list li i {
            color: var(--primary-red);
            flex-shrink: 0;
            margin-top: 0.25rem;
            font-size: 1.1rem;
        }

        .pricing-header {
            margin-bottom: 1.5rem;
        }

        .pricing-header i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        .pricing-body {
            text-align: left;
        }

        .pricing-description {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .pricing-info {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--border-color);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            text-align: center;
        }

        .pricing-note {
            margin-top: 2rem;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .pricing-note i {
            color: var(--primary-red);
            font-size: 1.2rem;
        }

        .faq-container {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
            .services-detail-section {
                padding: 60px 0;
            }

            .service-detail-card {
                padding: 2rem;
                margin-bottom: 1.5rem;
            }

            .service-detail-icon {
                width: 60px;
                height: 60px;
            }

            .service-detail-icon i {
                font-size: 1.75rem;
            }

            .service-detail-card h3 {
                font-size: 1.4rem;
            }
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--bg-gray);
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .cta-button-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-red);
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .cta-button-large:hover {
            transform: translateY(-2px);
            background: #b4873d;
            color: white;
            border-radius: 18px 6px 18px 6px;
        }

        .cta-button-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--primary-red);
            padding: 18px 40px;
            font-size: 1.1rem;
            border: 2px solid var(--primary-red);
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button-secondary:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-2px);
            border-radius: 18px 6px 18px 6px;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 0;
            }

            .cta-title {
                font-size: 1.6rem;
            }

            .cta-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .cta-button-large,
            .cta-button-secondary {
                width: 100%;
                justify-content: center;
                padding: 16px 30px;
                font-size: 1rem;
            }
        }

        /* FAQ Section Spacing Fix */
        .faq-section {
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }
        }

        /* Service Features List */
        .service-features {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0 0;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            line-height: 1.6;
            font-size: 0.9rem;
            list-style: none;
        }

        .service-features li::before {
            content: none;
            display: none;
        }

        .service-features li i {
            color: var(--primary-red);
            flex-shrink: 0;
            margin-top: 0.2rem;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .service-features {
                margin: 0.75rem 0 0 0;
            }

            .service-features li {
                padding: 0.4rem 0;
                font-size: 0.85rem;
            }
        }

/* Subpage Hero Responsive Styling */
@media (max-width: 768px) {
    .subpage-hero {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .subpage-hero .col-lg-6:first-child,
    .subpage-hero .col-lg-6:last-child {
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .subpage-hero h1 {
        font-size: 2rem;
    }
    
    .subpage-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* 🔥 NIEUW: Sticky sectie-afbeeldingen (alle secties behalve hero) */
.section-sticky-wrapper {
    position: relative;
}

.section-sticky-image {
    position: sticky;
    top: 140px; /* afstemmen op je navbar/hero hoogte */
    align-self: flex-start;
}

/* Op mobiel geen sticky (natuurlijker scrollgedrag) */
@media (max-width: 991.98px) {
    .section-sticky-image {
        position: static;
    }
}
