/* ============================================
   DIENSTEN PAGINA - COMPACT & MODERN - DONKER THEMA
   ============================================ */

/* Hero Sectie */
.diensten-hero {
    background-image: url("/img/zwart-groen.png");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.diensten-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* ✓ DONKERE OVERLAY */
    z-index: 0;
}

.diensten-hero .container {
    position: relative;
    z-index: 1;
}

.diensten-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--white);
}

.diensten-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.95);
}

/* ============================================
   TABS SECTIE
   ============================================ */
.diensten-tabs-section {
    padding: 4rem 0;
    background: #2a2a2a; /* ✓ DONKER */
}

/* Tab Navigation */
.tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    background: #353535; /* ✓ DONKER */
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tab-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    font-weight: 600;
    font-size: 0.95rem;
}

.tab-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #2a2a2a;
    border-color: #36B149; /* ✓ GROEN */
    color: #ffffff;
}

.tab-btn.active {
    background: #36B149; /* ✓ GROEN */
    color: var(--white);
    border-color: #36B149;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 177, 73, 0.5); /* ✓ GROENE GLOW */
}

/* Tab Content */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

/* Dienst Header */
.dienst-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #36B149; /* ✓ GROEN */
}

.dienst-header h2 {
    font-size: 2.5rem;
    color: #ffffff; /* ✓ WIT */
    margin-bottom: 1rem;
    font-weight: 700;
}

.dienst-header p {
    font-size: 1.15rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dienst Grid (2-column layout) */
.dienst-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.dienst-info-box {
    background: #353535; /* ✓ DONKER */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #36B149; /* ✓ GROEN */
}

.dienst-info-box h3 {
    font-size: 1.4rem;
    color: #ffffff; /* ✓ WIT */
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* Compact List */
.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-list li {
    padding: 0.6rem 0 0.6rem 30px;
    position: relative;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    font-size: 1rem;
    border-bottom: 1px solid #2a2a2a;
}

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

.compact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #36B149; /* ✓ GROEN */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mini Steps */
.mini-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mini-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #2a2a2a; /* ✓ DONKER */
    border-radius: 10px;
}

.mini-number {
    width: 36px;
    height: 36px;
    background: #36B149; /* ✓ GROEN */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(54, 177, 73, 0.3);
}

.mini-step p {
    font-size: 0.9rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    margin: 0;
    line-height: 1.4;
}

/* Types Compact (Badges) */
.types-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.type-badge {
    background: #2a2a2a; /* ✓ DONKER */
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #36B149; /* ✓ GROEN */
    transition: all 0.3s ease;
}

.type-badge:hover {
    background: #36B149; /* ✓ GROEN */
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(54, 177, 73, 0.4);
}

/* ============================================
   ACCORDIONS
   ============================================ */
.accordion-group {
    margin: 2rem 0;
}

.accordion-item {
    background: #353535; /* ✓ DONKER */
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #36B149; /* ✓ GROEN */
}

.accordion-item.active {
    border-color: #36B149; /* ✓ GROEN */
    box-shadow: 0 4px 20px rgba(54, 177, 73, 0.3);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff; /* ✓ WIT */
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #2a2a2a;
}

.accordion-item.active .accordion-header {
    background: #36B149; /* ✓ GROEN */
    color: var(--white);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    border-top: 2px solid #2a2a2a;
}

/* Benefits Compact */
.benefits-compact {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    padding: 1rem;
    background: #2a2a2a; /* ✓ DONKER */
    border-radius: 10px;
    border-left: 3px solid #36B149; /* ✓ GROEN */
}

.benefit-item strong {
    display: block;
    color: #ffffff; /* ✓ WIT */
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    line-height: 1.5;
    margin: 0;
}

/* Price Table */
.price-table {
    padding: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #2a2a2a; /* ✓ DONKER */
    border-radius: 10px;
    border-left: 4px solid #36B149; /* ✓ GROEN */
}

.price-row span {
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    font-size: 1rem;
}

.price-row strong {
    color: #36B149; /* ✓ GROEN */
    font-size: 1.15rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.9rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px dashed #2a2a2a;
}

/* Packages Compact */
.packages-compact {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.package-compact {
    background: #2a2a2a; /* ✓ DONKER */
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #36B149; /* ✓ GROEN */
    transition: all 0.3s ease;
}

.package-compact:hover {
    border-color: #36B149;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(54, 177, 73, 0.4);
}

.package-compact h4 {
    font-size: 1.2rem;
    color: #ffffff; /* ✓ WIT */
    margin-bottom: 0.75rem;
}

.package-compact p {
    font-size: 0.9rem;
    color: #d0d0d0; /* ✓ LICHTGRIJS */
    line-height: 1.5;
    margin-bottom: 1rem;
}

.package-compact .price {
    display: block;
    font-size: 1.3rem;
    color: #36B149; /* ✓ GROEN */
    font-weight: 700;
    padding-top: 1rem;
    border-top: 2px solid #353535;
}

/* Dienst CTA */
.dienst-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.dienst-cta .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ============================================
   WAAROM ONS - COMPACT
   ============================================ */
.waarom-ons-compact {
    padding: 4rem 0;
    background: #353535; /* ✓ DONKER */
}

.waarom-ons-compact .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.waarom-ons-compact .section-title h2 {
    font-size: 2.5rem;
    color: #ffffff; /* ✓ WIT */
    font-weight: 700;
}

.benefits-grid-compact {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.benefit-compact {
    background: #2a2a2a; /* ✓ DONKER */
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #36B149; /* ✓ GROEN */
}

.benefit-compact:hover {
    background: #353535;
    border-color: #36B149;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(54, 177, 73, 0.4);
}

.benefit-compact .benefit-icon {
    width: 60px;
    height: 60px;
    background: #36B149; /* ✓ GROEN */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 15px rgba(54, 177, 73, 0.4);
}

.benefit-compact h3 {
    font-size: 1rem;
    color: #ffffff; /* ✓ WIT */
    font-weight: 700;
    margin: 0;
}

/* ============================================
   OFFERTE SECTIE
   ============================================ */
.offerte-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(54, 177, 73, 0.4)); /* ✓ DONKER MET GROEN */
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offerte-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.offerte-content {
    position: relative;
    z-index: 1;
}

.offerte-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.offerte-content > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.95);
}

.offerte-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-white {
    background: var(--white);
    color: #2a2a2a; /* ✓ DONKER */
}

.btn-white:hover {
    background: #36B149; /* ✓ GROEN */
    color: var(--white);
}

.offerte-guarantees {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.guarantee-icon {
    width: 30px;
    height: 30px;
    background: #36B149; /* ✓ GROEN */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

@media (max-width: 1024px) {
    .tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .dienst-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .diensten-hero {
        padding: 5rem 0 2.5rem;
    }

    .diensten-hero h1 {
        font-size: 2.2rem;
    }

    .diensten-hero p {
        font-size: 1.1rem;
    }

    .diensten-tabs-section {
        padding: 3rem 0;
    }

    .tabs-nav {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .tab-btn {
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
    }

    .tab-btn svg {
        width: 24px;
        height: 24px;
    }

    .dienst-header h2 {
        font-size: 2rem;
    }

    .dienst-header p {
        font-size: 1rem;
    }

    .dienst-info-box {
        padding: 1.5rem;
    }

    .mini-steps {
        grid-template-columns: 1fr;
    }

    .benefits-compact {
        grid-template-columns: 1fr;
    }

    .benefits-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .offerte-section {
        padding: 4rem 0;
    }

    .offerte-content h2 {
        font-size: 2.2rem;
    }

    .offerte-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .diensten-hero {
        padding: 4rem 0 2rem;
    }

    .diensten-hero h1 {
        font-size: 1.8rem;
    }

    .diensten-hero p {
        font-size: 1rem;
    }

    .dienst-header h2 {
        font-size: 1.6rem;
    }

    .dienst-info-box {
        padding: 1.25rem;
    }

    .dienst-info-box h3 {
        font-size: 1.2rem;
    }

    .compact-list li {
        font-size: 0.9rem;
    }

    .mini-step {
        padding: 0.5rem;
    }

    .mini-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .mini-step p {
        font-size: 0.85rem;
    }

    .benefits-grid-compact {
        grid-template-columns: 1fr;
    }

    .benefit-compact {
        padding: 1.5rem 1rem;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .benefits-compact {
        padding: 1.5rem;
    }

    .price-table {
        padding: 1.5rem;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .offerte-content h2 {
        font-size: 1.8rem;
    }

    .offerte-content > p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .offerte-guarantees {
        flex-direction: column;
        gap: 1rem;
    }
}