/* Xiaolan Services Styles - jxaolanshi.com 2025 */

.xiaolan-services-layout {
    --xiaolan-services-accent: #06b6d4;
    --xiaolan-services-highlight: #7c3aed;
}

.xiaolan-service-overview {
    backdrop-filter: blur(18px);
    transition: all 0.6s ease;
}

.xiaolan-service-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

.xiaolan-service-stat {
    transition: all 0.5s ease;
}

.xiaolan-service-stat:hover {
    transform: translateY(-8px) scale(1.1);
}

.xiaolan-service-detail .xiaolan-card-wrapper {
    backdrop-filter: blur(12px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.xiaolan-service-detail:hover .xiaolan-card-wrapper {
    transform: translateY(-15px) rotateX(6deg);
    box-shadow: 0 35px 70px rgba(37, 99, 235, 0.4);
}

.xiaolan-tier-card {
    transition: all 0.6s ease;
    transform-style: preserve-3d;
}

.xiaolan-tier-card:hover {
    transform: translateY(-10px) rotateX(8deg);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

@keyframes xiaolan-services-fade-in {
    0% { opacity: 0; transform: translateY(40px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.xiaolan-service-detail {
    animation: xiaolan-services-fade-in 1s ease-out forwards;
}

.xiaolan-service-detail:nth-child(1) { animation-delay: 0.3s; }
.xiaolan-service-detail:nth-child(2) { animation-delay: 0.5s; }
.xiaolan-service-detail:nth-child(3) { animation-delay: 0.7s; }