/* Premium Services Styling */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-premium-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-premium-card:hover::before {
    transform: scaleX(1);
}

.service-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-premium {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-premium-card:hover .service-icon-premium::before {
    left: 100%;
}

.service-premium-card:hover .service-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.service-badge {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-badge.featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: #ff6b35;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-premium-card:hover .service-badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-premium-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-premium-card:hover h3 {
    color: #ff6b35;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features-premium {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
}

.feature-item i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.feature-item span {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-action {
    margin-top: auto;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

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

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

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

.service-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-premium-card {
        padding: 1.5rem;
    }
    
    .service-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-premium-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation for cards appearing */
.service-premium-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-premium-card:nth-child(1) { animation-delay: 0.1s; }
.service-premium-card:nth-child(2) { animation-delay: 0.2s; }
.service-premium-card:nth-child(3) { animation-delay: 0.3s; }
.service-premium-card:nth-child(4) { animation-delay: 0.4s; }
.service-premium-card:nth-child(5) { animation-delay: 0.5s; }
.service-premium-card:nth-child(6) { animation-delay: 0.6s; }
.service-premium-card:nth-child(7) { animation-delay: 0.7s; }
.service-premium-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}