/* Debug CSS to fix display issues */

/* Ensure service cards are visible */
.service-overview-card {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    margin-bottom: 1rem !important;
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease !important;
}

.service-overview-card h3 {
    color: #000 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.service-overview-card p {
    color: #6b7280 !important;
    line-height: 1.6 !important;
}

.service-overview-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #ea6004 !important;
    margin-bottom: 1rem !important;
    opacity: 0.2 !important;
}

.services-overview-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
}

/* Fix counter display */
.counter {
    display: inline-block !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ea6004 !important;
}

/* Fix image display */
img.lazy {
    opacity: 1 !important;
    transform: none !important;
}

img[data-src] {
    opacity: 0.5 !important;
    background: #f3f4f6 !important;
    min-height: 200px !important;
}

/* Fix animation elements */
.animate-slide-up,
.animate-fade-in,
.animate-slide-left,
.animate-slide-right {
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure stats are visible */
.stat-item,
.stat-showcase-item,
.project-stat-item {
    opacity: 1 !important;
    transform: none !important;
}

/* Fix service detail sections */
.service-detail-content,
.service-detail-image {
    opacity: 1 !important;
    transform: none !important;
}

.service-detail-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Debug visibility */
.debug-visible {
    border: 2px solid red !important;
    background: rgba(255, 0, 0, 0.1) !important;
}

/* Ensure cursor is visible */
.custom-cursor {
    position: fixed !important;
    width: 10px !important;
    height: 10px !important;
    background: #ea6004 !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 9999 !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.1s ease !important;
    opacity: 1 !important;
}

.custom-cursor.hover-button {
    width: 15px !important;
    height: 15px !important;
    background: rgba(234, 96, 4, 0.8) !important;
}

.custom-cursor.hover-link {
    width: 8px !important;
    height: 8px !important;
    background: #ea6004 !important;
}

/* Hide custom cursor on mobile devices */
@media (max-width: 1023px) {
    .custom-cursor {
        display: none !important;
    }
}