.services-modern.section-universal {
 background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
 background-size: 400% 400%;
 animation: gradientShift 15s ease infinite, sectionSlideIn 1s ease-out;
 color: #ffffff;
 padding: 48px 0 80px 0;
 margin-top: 0;
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 z-index: 1;
 overflow: hidden;

} @keyframes sectionSlideIn {
 0% {
 opacity: 0;
 transform: translateY(50px);
 
} 100% {
 opacity: 1;
 transform: translateY(0);
 
}

} .services-modern.section-universal::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
 animation: floatBackground 20s ease-in-out infinite;
 pointer-events: none;
 z-index: -1;

} @keyframes gradientShift {
 0% {
 background-position: 0% 50%;
 
} 50% {
 background-position: 100% 50%;
 
} 100% {
 background-position: 0% 50%;
 
}

} @keyframes floatBackground {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.7;
 
} 33% {
 transform: translateY(-20px) rotate(1deg);
 opacity: 0.9;
 
} 66% {
 transform: translateY(10px) rotate(-1deg);
 opacity: 0.8;
 
}

} .container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0;
 background: transparent;
 color: #ffffff;
 width: 100%;
 text-align: center;
 position: relative;
 z-index: 2;

} @media (max-width: 600px) {
 .services-modern.section-universal {
 padding: 28px 0 40px 0;
 margin-top: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 
}

} .services-header {
 text-align: center;
 margin-bottom: 48px;

} .services-badge {
 display: inline-block;
 background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
 color: #ffffff;
 font-weight: 600;
 font-size: 15px;
 padding: 8px 20px;
 border-radius: 16px;
 margin-bottom: 16px;
 letter-spacing: 1px;

} .services-title {
 font-size: 2.5rem;
 font-weight: 700;
 margin: 0 0 16px 0;
 background: linear-gradient(135deg, #ffffff, #8b5cf6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;

} .services-subtitle {
 color: var(--gray);
 font-size: 1.1rem;
 margin-bottom: 0;

} .services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 32px;
 margin-bottom: 48px;

} .service-card {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(20px);
 border-radius: 28px;
 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
 padding: 36px;
 display: flex;
 flex-direction: column;
 gap: 24px;
 border: 1px solid rgba(255, 255, 255, 0.1);
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 min-width: 0;
 position: relative;
 overflow: hidden;
 cursor: pointer;
 transform-style: preserve-3d;
 animation: cardFloat 6s ease-in-out infinite;

} .service-card:nth-child(2n) {
 animation-delay: -2s;

} .service-card:nth-child(3n) {
 animation-delay: -4s;

} @keyframes cardFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 
} 25% {
 transform: translateY(-8px) rotate(0.5deg);
 
} 50% {
 transform: translateY(-4px) rotate(-0.5deg);
 
} 75% {
 transform: translateY(-12px) rotate(0.3deg);
 
}

} .service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899, #3b82f6);
 background-size: 200% 100%;
 animation: gradientFlow 3s ease infinite;

} .service-card::after {
 content: '';
 position: absolute;
 top: -50%;
 left: -50%;
 width: 200%;
 height: 200%;
 background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
 opacity: 0;
 transition: opacity 0.4s ease;
 pointer-events: none;

} @keyframes gradientFlow {
 0% {
 background-position: 0% 50%;
 
} 50% {
 background-position: 100% 50%;
 
} 100% {
 background-position: 0% 50%;
 
}

} .service-card:hover {
 transform: translateY(-12px) rotateX(5deg) rotateY(5deg);
 box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
 border-color: rgba(139, 92, 246, 0.3);

} .service-card:hover::after {
 opacity: 1;

} .service-card:hover .service-icon {
 transform: scale(1.1) rotate(5deg);
 box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);

} .service-card:hover .service-content h3 {
 color: #8b5cf6;
 transform: translateY(-2px);

} .service-card:hover .btn-service {
 transform: translateY(-2px);
 box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);

} .service-icon {
 width: 70px;
 height: 70px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #ffffff;
 font-size: 1.8rem;
 margin: 0 auto;
 position: relative;
 overflow: hidden;
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);

} .service-icon::before {
 content: '';
 position: absolute;
 top: -50%;
 left: -50%;
 width: 200%;
 height: 200%;
 background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
 transform: rotate(45deg);
 transition: all 0.6s ease;
 opacity: 0;

} .service-icon:hover::before {
 opacity: 1;
 animation: shine 0.6s ease;

} @keyframes shine {
 0% {
 transform: translateX(-100%) translateY(-100%) rotate(45deg);
 
} 100% {
 transform: translateX(100%) translateY(100%) rotate(45deg);
 
}

} .service-content h3 {
 font-size: 1.5rem;
 font-weight: 700;
 color: #ffffff;
 margin: 0 0 12px 0;
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;

} .service-content h3::after {
 content: '';
 position: absolute;
 bottom: -4px;
 left: 50%;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);
 transition: all 0.4s ease;
 transform: translateX(-50%);

} .service-card:hover .service-content h3::after {
 width: 60%;

} .service-content p {
 color: var(--gray);
 font-size: 1rem;
 line-height: 1.6;
 margin-bottom: 20px;

} .service-features {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
 flex-direction: column;
 gap: 16px;

} .service-feature:nth-child(1) {
 animation-delay: 0.1s;

} .service-feature:nth-child(2) {
 animation-delay: 0.2s;

} .service-feature:nth-child(3) {
 animation-delay: 0.3s;

} @keyframes featureSlideIn {
 0% {
 opacity: 0;
 transform: translateX(-20px);
 
} 100% {
 opacity: 1;
 transform: translateX(0);
 
}

} .service-feature {
 display: flex;
 align-items: center;
 gap: 12px;
 color: #ffffff;
 font-size: 0.95rem;
 font-weight: 500;
 padding: 12px 16px;
 background: rgba(255, 255, 255, 0.08);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 16px;
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 overflow: hidden;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 animation: featureSlideIn 0.6s ease-out;

} .service-feature::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 height: 100%;
 width: 4px;
 background: linear-gradient(180deg, #8b5cf6, #ec4899);
 transform: scaleY(0);
 transition: transform 0.4s ease;
 border-radius: 0 2px 2px 0;

} .service-feature:hover::before {
 transform: scaleY(1);

} .service-feature:hover {
 background: rgba(139, 92, 246, 0.15);
 transform: translateY(-2px);
 box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
 border-color: rgba(139, 92, 246, 0.3);

} .service-feature:hover i {
 transform: scale(1.1) rotate(5deg);
 box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);

} .service-feature i {
 width: 24px;
 height: 24px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 8px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #ffffff;
 font-size: 0.7rem;
 font-weight: 600;
 animation: iconPulse 2s ease-in-out infinite;
 box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
 flex-shrink: 0;

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

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

} .btn-service {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
 padding: 16px 24px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 color: #ffffff;
 text-decoration: none;
 border-radius: 16px;
 font-weight: 600;
 font-size: 0.95rem;
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 border: none;
 cursor: pointer;
 position: relative;
 overflow: hidden;
 box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
 animation: buttonPulse 3s ease-in-out infinite;
 animation-delay: -0.5s;

} .btn-service::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 ease;

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

} .btn-service:hover {
 transform: translateY(-2px);
 box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
 color: #ffffff;

} .btn-text {
 font-weight: 600;

} .btn-icon {
 display: flex;
 align-items: center;

} .services-cta {
 text-align: center;

} .btn-primary {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 16px 32px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 color: #ffffff;
 text-decoration: none;
 border-radius: 16px;
 font-weight: 600;
 font-size: 1rem;
 transition: all 0.3s ease;
 border: none;
 cursor: pointer;
 box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
 animation: buttonPulse 3s ease-in-out infinite;
 animation-delay: -2s;

} @keyframes buttonPulse {
 0%, 100% {
 box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
 
} 50% {
 box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
 
}

} .btn-primary:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4);
 color: #ffffff;

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

} .section-animate {
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.6s ease;

} .section-animate.visible {
 opacity: 1;
 transform: translateY(0);

} @media (max-width: 992px) {
 .services-grid {
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 24px;
 
} .service-card {
 padding: 28px;
 
} .services-title {
 font-size: 2rem;
 
}

} @media (max-width: 600px) {
 .services-header {
 margin-bottom: 32px;
 
} .services-title {
 font-size: 1.8rem;
 
} .services-grid {
 grid-template-columns: 1fr;
 gap: 20px;
 
} .service-card {
 padding: 24px 20px;
 border-radius: 18px;
 
} .service-icon {
 width: 50px;
 height: 50px;
 font-size: 1.3rem;
 
} .service-content h3 {
 font-size: 1.2rem;
 
} .btn-service {
 padding: 12px 16px;
 font-size: 0.85rem;
 
} .btn-primary {
 width: 100%;
 justify-content: center;
 padding: 14px 24px;
 
}

}