/* Theme Refinements - Professional Polish */

/* Enhanced Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon i {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: rotate(5deg) scale(1.1);
    color: #10b981;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Enhanced Hero Features */
.feature-item {
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.feature-item i {
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
    color: #10b981;
}

/* Enhanced Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Enhanced Logo Animation */
.logo-icon i {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-logo:hover .logo-icon i {
    transform: rotate(360deg) scale(1.1);
    color: #10b981;
}

/* Staggered Animations for Service Grid */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Loading States */
.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Professional Color Accents */
:root {
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
}

/* Enhanced Status Indicators */
.status-ok {
    color: var(--success-color);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.temp {
    color: var(--warning-color);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Smooth Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .feature-item:hover {
        transform: translateY(-2px);
    }
    
    .btn:hover {
        transform: translateY(-1px);
    }
}