/* ===== PAGE SERVICES - DESIGN PREMIUM ===== */

/* Services Hero Section */
.services-hero-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 80px;
    overflow: hidden;
}

.services-hero-section .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particles-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 180, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(47, 85, 212, 0.1) 0%, transparent 50%);
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 180, 219, 0.2);
    border: 2px solid var(--tech-gradient-3);
    border-radius: 50px;
    color: var(--tech-gradient-3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(0, 180, 219, 0.3);
}

.services-hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.services-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

/* Service Card Premium */
.service-card-premium {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 180, 219, 0.05) 0%, 
        rgba(47, 85, 212, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15),
                0 0 0 2px var(--tech-gradient-3) inset;
    border-color: var(--tech-gradient-3);
}

/* Service Number */
.service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 180, 219, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-number {
    color: rgba(0, 180, 219, 0.15);
    transform: scale(1.1);
}

/* Service Icon Premium */
.service-icon-premium {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, 
        rgba(0, 180, 219, 0.1), 
        rgba(47, 85, 212, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 2px solid rgba(0, 180, 219, 0.2);
    transition: all 0.4s ease;
}

.service-icon-premium i {
    font-size: 42px;
    color: var(--tech-gradient-3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.icon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 180, 219, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card-premium:hover .service-icon-premium {
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 180, 219, 0.4);
}

.service-card-premium:hover .service-icon-premium i {
    color: #ffffff;
    transform: rotate(10deg);
}

.service-card-premium:hover .icon-circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
    animation: rotate-circle 3s linear infinite;
}

@keyframes rotate-circle {
    0% { transform: translate(-50%, -50%) scale(1.3) rotate(0deg); }
    100% { transform: translate(-50%, -50%) scale(1.3) rotate(360deg); }
}

/* Service Title & Description */
.service-title-premium {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-title-premium {
    color: var(--tech-gradient-3);
}

.service-description-premium {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li i {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.service-card-premium:hover .service-features-list li {
    padding-left: 10px;
    color: var(--dark-color);
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 180, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.service-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 180, 219, 0.5);
}

.service-btn i {
    transition: transform 0.3s ease;
}

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

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        var(--tech-gradient-3), 
        var(--primary-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.marker-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 180, 219, 0.4);
    border: 5px solid #f8f9fa;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-number {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 180, 219, 0.6);
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-10px);
}

.timeline-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%2300B4DB' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
}

.services-cta-section .cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.services-cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .services-hero-title {
        font-size: 48px;
    }
    
    .services-main-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 0;
    }
    
    .timeline-content:hover,
    .timeline-item:nth-child(even) .timeline-content:hover {
        transform: translateX(10px);
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 38px;
    }
    
    .services-hero-description {
        font-size: 16px;
    }
    
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-premium {
        padding: 35px 25px;
    }
    
    .marker-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .services-cta-section h2 {
        font-size: 32px;
    }
}

