/* ===================================
   Premium Services Section - Ultra Modern
   =================================== */
.services-section {
    position: relative;
    padding: 140px 40px;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    overflow: hidden;
    z-index: 1;
}

/* Advanced Background Effects */
.services-bg-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.services-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.services-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.services-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FF6B35 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: 5s;
}

.services-orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Animated Grid */
.services-grid-animated {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.02) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.02) 2px, transparent 2px);
    background-size: 60px 60px;
    opacity: 0.5;
    animation: gridScroll 30s linear infinite;
    z-index: -1;
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

/* Floating Particles */
.services-particles {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 3s; }
.particle:nth-child(3) { left: 40%; animation-delay: 6s; }
.particle:nth-child(4) { left: 60%; animation-delay: 9s; }
.particle:nth-child(5) { left: 75%; animation-delay: 12s; }
.particle:nth-child(6) { left: 90%; animation-delay: 2s; }

@keyframes particleFloat {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateX(-20px) scale(1);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

.services-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Enhanced Section Header */
.services-header {
    text-align: center;
    margin-bottom: 100px;
    animation: headerFadeIn 1.2s ease-out;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes badgeShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}



@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.services-title {
    font-size: 64px;
    font-weight: 900;
    margin: 0 0 25px 0;
    line-height: 1.1;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.services-title-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 50%, #8B5CF6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 10px;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; width: 120px; }
    50% { opacity: 1; width: 180px; }
}

.services-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 750px;
    margin: 30px auto 0;
    line-height: 1.8;
    font-weight: 400;
}

/* Ultra Modern Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

/* Premium Service Card */
.service-card {
    position: relative;
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(40px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 45px 40px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out backwards;
}

.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; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }
.service-card:nth-child(10) { animation-delay: 1s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card Glow Effect */
.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 107, 53, 0.1) 50%, 
        rgba(139, 92, 246, 0.1) 100%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 215, 0, 0.08) 0%, 
        transparent 50%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card Header */
.service-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 107, 53, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 50%, 
        transparent 100%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%) rotate(45deg);
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.15);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.25),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.service-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Card Number Badge */
.service-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #0a0a0f;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Card Description */
.service-card-description {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    font-weight: 400;
}

/* Enhanced Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-card:hover .service-features li::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    transform: rotate(360deg);
}

/* Card Footer */
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.08);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FF6B35);
    transition: width 0.4s ease;
}

.service-link:hover::after {
    width: calc(100% - 30px);
}

.service-link:hover {
    gap: 15px;
    color: #FF6B35;
    transform: translateX(5px);
}

.service-arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.service-link:hover .service-arrow {
    transform: translateX(8px);
}

.service-badge-tag {
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 1.5px solid rgba(255, 215, 0, 0.25);
    border-radius: 30px;
    color: #FFD700;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: tagGlow 3s ease-in-out infinite;
}

@keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
}

/* Ultra Premium CTA Section */
.services-cta {
    text-align: center;
    margin-top: 80px;
    padding: 70px 40px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.08) 0%, 
        rgba(255, 107, 53, 0.08) 50%, 
        rgba(139, 92, 246, 0.08) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 40px;
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    animation: ctaFadeIn 1s ease-out 1.2s backwards;
}

.services-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FFD700, #FF6B35, #8B5CF6, #FFD700);
    background-size: 300% 300%;
    border-radius: 40px;
    z-index: -1;
    opacity: 0.4;
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-cta-title {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 18px 0;
    letter-spacing: -1px;
}

.services-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-weight: 400;
}

.services-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    color: #0a0a0f;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.3),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.services-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-cta-button:hover::before {
    opacity: 1;
}

.services-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.5),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    gap: 20px;
}

.services-cta-button span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.services-cta-button:hover span:last-child {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 30px;
    }
    
    .services-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 100px 20px;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
    
    .services-title {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 30px;
    }
    
    .services-cta {
        padding: 50px 25px;
    }
    
    .services-cta-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 34px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }
    
    .service-card-title {
        font-size: 22px;
    }
    
    .services-cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }
}
