/* resources/css/services.css */

.service-hero-gradient {
    background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.08), transparent 40%),
                radial-gradient(circle at bottom left, rgba(239, 68, 68, 0.05), transparent 40%);
}

.audit-box-uiux {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(3, 7, 18, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.problem-card {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateY(-5px);
}

.service-grid-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.service-grid-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(239, 68, 68, 0.2);
}

.process-step-dot {
    width: 40px;
    height: 40px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    items-center;
    justify-center;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.process-line {
    position: absolute;
    top: 20px;
    left: 40px;
    right: -40px;
    height: 1px;
    background: repeating-linear-gradient(to right, #ef4444 0, #ef4444 5px, transparent 5px, transparent 10px);
    z-index: 1;
}

.case-study-card-premium {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-study-card-premium:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.faq-item-premium {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expert-seal-float {
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
