/* Modern styling for ontstoppingswerken page */

/* Modern image blocks with overlays */
.modern-image-block {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.modern-image-block img {
    transition: transform 0.3s ease;
}

.modern-image-block:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.modern-image-block:hover .image-overlay {
    transform: translateY(0);
}

/* Modern pricing cards */
.pricing-block {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Fix double checkmarks by preventing automatic list styling */
.pricing-block ul li {
    position: relative;
    padding-left: 0 !important;
    list-style: none !important;
}

.pricing-block ul li:before {
    display: none !important;
    content: none !important;
}

.pricing-block .list-unstyled li {
    list-style: none !important;
}

.pricing-block .list-unstyled li:before,
.pricing-block .list-unstyled li:after {
    display: none !important;
    content: none !important;
}

/* Ensure only our FontAwesome icons show */
.pricing-block .price-body ul li {
    background: none !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
    position: relative !important;
}

.pricing-block .price-body ul li i.fa {
    display: inline-block !important;
    margin-right: 0.5rem !important;
}

/* Override any existing checkmark styles */
.ontstoppingswerken .pricing-block ul li:before,
.ontstoppingswerken .pricing-block ul li:after {
    display: none !important;
}

.ontstoppingswerken .pricing-block .price-body li {
    background-image: none !important;
    padding-left: 0 !important;
}

/* Force remove any inherited list styles */
.pricing-block .price-body .list-unstyled {
    padding-left: 0 !important;
}

.pricing-block .price-body .list-unstyled li {
    padding-left: 0 !important;
    background: transparent !important;
    list-style-type: none !important;
}

.pricing-block.featured {
    border: 2px solid #ff6b35;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
}

.price-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid #f8f9fa;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-modern i {
    font-size: 1.5rem;
    color: white;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 1rem 0 0.5rem;
}

.price-body {
    padding: 1.5rem;
    flex: 1;
}

.pricing-block .card-footer {
    background: transparent;
    border-top: none;
    padding: 1.5rem;
}

/* Feature list styling */
.feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
}

/* Stats block */
.stats-block {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item {
    padding: 1.5rem 1rem;
    border-radius: 8px;
    background: white;
    border: 2px solid #ff6b35;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

.stat-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: #ff6b35 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
}

.stat-label {
    color: #333 !important;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    display: block;
}

/* Modern FAQ accordion */
.modern-accordion .card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.modern-accordion .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
}

.modern-accordion .btn-link {
    color: #333;
    text-decoration: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
}

.modern-accordion .btn-link:hover {
    background-color: rgba(255, 107, 53, 0.05);
    color: #ff6b35;
}

.modern-accordion .btn-link:not(.collapsed) {
    background-color: #ff6b35;
    color: white;
}

.modern-accordion .btn-link:not(.collapsed):hover {
    background-color: #f7931e;
}

.modern-accordion .card-body {
    padding: 1.5rem;
    background: white;
}

/* CTA box */
.cta-box {
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Two column layout adjustments */
@media (min-width: 992px) {
    .pricing-block .price-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .pricing-block .price-body {
        padding: 1.5rem;
    }
    
    .pricing-block .service-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .pricing-block .service-icon-modern i {
        font-size: 1.75rem;
    }
    
    .pricing-block .price-amount {
        font-size: 3rem;
    }
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .price-amount {
        font-size: 2rem;
    }
    
    /* Add spacing between pricing cards on mobile */
    .pricing-block {
        margin-bottom: 2rem !important;
    }
    
    .row.justify-content-center > [class*="col-"] {
        margin-bottom: 1.5rem;
    }
    
    .row.justify-content-center > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #333 !important;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
        margin: 0.25rem 0;
        border-width: 2px;
    }
    
    .stats-block {
        padding: 1.5rem;
    }
    
    .modern-accordion .btn-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .feature-item {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .feature-icon {
        margin: 0 auto 1rem auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .feature-content {
        text-align: center !important;
    }
    
    .d-flex.gap-3 > * {
        margin-bottom: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .stats-block {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
        font-weight: 900;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #333 !important;
        line-height: 1.3;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        margin: 0.25rem 0;
        border-width: 2px;
    }
    
    .pricing-block {
        margin-bottom: 1.5rem;
    }
    
    .cta-box {
        padding: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.pricing-block,
.feature-item,
.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-block:nth-child(1) { animation-delay: 0.1s; }
.pricing-block:nth-child(2) { animation-delay: 0.2s; }
.pricing-block:nth-child(3) { animation-delay: 0.3s; }

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

/* Enhanced button styles */
.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Gap utility for older browsers */
.gap-3 > * + * {
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .gap-3 > * + * {
        margin-left: 0;
        margin-top: 0.75rem;
    }
}

/* BTI Orange Button Overrides */
.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    border-color: #ff6b35 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #f7931e 0%, #e6722b 100%) !important;
    border-color: #f7931e !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
}