/* Services Glassmorphism - Premium */
.services-glass {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.services-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.services-title-glass {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.services-subtitle-glass {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
}

/* Services Grid */
.services-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-card-glass:hover::before {
    opacity: 1;
}

/* Card Header */
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-icon-glass {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    transition: all 0.4s;
}

.service-card-glass:hover .service-icon-glass {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    line-height: 1;
}

/* Card Content */
.service-card-content {
    position: relative;
    z-index: 1;
}

.service-title-card {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-desc-card {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

/* Features List */
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: white;
    opacity: 0.9;
}

.service-features i {
    color: #00d4ff;
    font-size: 1.1rem;
}

/* Card Footer */
.service-link-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.service-link-glass:hover {
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-color: transparent;
    transform: translateX(5px);
}

.service-link-glass i {
    transition: transform 0.3s;
}

.service-link-glass:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .services-glass {
        padding: 3rem 1rem;
    }
    
    .services-grid-glass {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-glass {
        padding: 2rem;
    }
    
    .services-title-glass {
        font-size: 2rem;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
