/* Link indicator styles - IMPORTANT: fixed positioning */
.click-indicator {
    position: fixed !important;
    background: #f4efe7;
    color: black;
    z-index: 9999 !important;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: nowrap;
    top: -20%;
    left: -20%;
    transform: translateZ(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.click-indicator.visible {
    opacity: 1;
}

/* Remove existing cursor and overlay styles if causing conflicts */
.cursor {
    display: none !important;
}

.overlay {
    display: none !important;
}

/* Link wrapper */
.link-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.link-wrapper a {
    position: relative;
    display: inline-block;
    text-decoration: underline;
    cursor: pointer;
}

/* ==========================================================================
   Industries We Serve Section - Guaranteed Responsive Layouts
   ========================================================================== */
#industries {
    margin-top: 0 !important;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
    #industries {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media (min-width: 768px) {
    #industries {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

/* Desktop Grid: strictly hidden on mobile (< 640px), displayed on >= 640px */
.industries-desktop-grid {
    display: none !important;
}

@media (min-width: 640px) {
    .industries-desktop-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.25rem !important;
    }
}

@media (min-width: 1024px) {
    .industries-desktop-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

/* Mobile Slider: strictly displayed on mobile (< 640px), hidden on >= 640px */
.industries-mobile-slider {
    display: block !important;
}

@media (min-width: 640px) {
    .industries-mobile-slider {
        display: none !important;
    }
}

/* Compact Slider Dots for Industries */
.wp-ind-dot {
    height: 6px !important;
    min-height: 0 !important;
    max-height: 6px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 9999px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    line-height: 0 !important;
    box-shadow: none !important;
}

.wp-ind-dot:not(.is-active) {
    width: 6px !important;
    background-color: rgba(177, 166, 150, 0.35) !important;
}

.wp-ind-dot.is-active {
    width: 22px !important;
    background-color: #f4efe7 !important;
}