/* Company Detail Page Styles */

/* No Services State Styles */
.no-services-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.no-services-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border: 2px solid #dee2e6;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.no-services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.no-services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.no-services-icon {
    margin-bottom: 1.5rem;
}

.no-services-icon i {
    font-size: 4rem;
    color: #6c757d;
    background: linear-gradient(135deg, #6c757d, #495057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.no-services-content {
    margin-bottom: 2rem;
}

.no-services-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.no-services-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-services-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.no-services-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.no-services-actions .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.no-services-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

.no-services-actions .btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.no-services-actions .btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

.no-services-actions .btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .no-services-container {
        padding: 2rem 1rem;
    }
    
    .no-services-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .no-services-icon i {
        font-size: 3rem;
    }
    
    .no-services-title {
        font-size: 1.5rem;
    }
    
    .no-services-description {
        font-size: 1rem;
    }
    
    .no-services-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-services-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .no-services-card {
        padding: 1.5rem 1rem;
    }
    
    .no-services-icon i {
        font-size: 2.5rem;
    }
    
    .no-services-title {
        font-size: 1.25rem;
    }
    
    .no-services-description {
        font-size: 0.95rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .no-services-card {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        border-color: #4a5568;
    }
    
    .no-services-title {
        color: #e2e8f0;
    }
    
    .no-services-description {
        color: #a0aec0;
    }
    
    .no-services-icon i {
        color: #a0aec0;
        background: linear-gradient(135deg, #a0aec0, #718096);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Animation delays for staggered effect */
.no-services-card[data-aos="fade-up"] {
    animation-delay: 0.2s;
}

.no-services-icon {
    animation-delay: 0.4s;
}

.no-services-content {
    animation-delay: 0.6s;
}

.no-services-actions {
    animation-delay: 0.8s;
}
