/* ============================================
   SERVICES SECTION - Creative Premium Design
   ============================================ */

.services-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.services-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 20px;
}

.services-badge i {
    font-size: 0.9rem;
}

.services-title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-title span {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Service Card - Premium Design */
.service-card-new {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Card gradient accent line */
.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Card background glow on hover */
.service-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--card-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Card accent colors */
.service-card-new.card-teal {
    --card-accent: linear-gradient(90deg, #06b6d4, #0891b2);
    --card-glow: rgba(6, 182, 212, 0.08);
    --icon-bg: rgba(6, 182, 212, 0.1);
    --icon-color: #06b6d4;
}

.service-card-new.card-indigo {
    --card-accent: linear-gradient(90deg, #6366f1, #4f46e5);
    --card-glow: rgba(99, 102, 241, 0.08);
    --icon-bg: rgba(99, 102, 241, 0.1);
    --icon-color: #6366f1;
}

.service-card-new.card-purple {
    --card-accent: linear-gradient(90deg, #8b5cf6, #7c3aed);
    --card-glow: rgba(139, 92, 246, 0.08);
    --icon-bg: rgba(139, 92, 246, 0.1);
    --icon-color: #8b5cf6;
}

.service-card-new.card-pink {
    --card-accent: linear-gradient(90deg, #ec4899, #db2777);
    --card-glow: rgba(236, 72, 153, 0.08);
    --icon-bg: rgba(236, 72, 153, 0.1);
    --icon-color: #ec4899;
}

.service-card-new.card-orange {
    --card-accent: linear-gradient(90deg, #f97316, #ea580c);
    --card-glow: rgba(249, 115, 22, 0.08);
    --icon-bg: rgba(249, 115, 22, 0.1);
    --icon-color: #f97316;
}

/* Hover state */
.service-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

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

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

/* Card Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--icon-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--icon-color);
    transition: all 0.4s ease;
}

.service-card-new:hover .service-icon {
    transform: scale(1.1);
    background: var(--card-accent);
}

.service-card-new:hover .service-icon i {
    color: #ffffff;
}

/* Card Content */
.service-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card-new:hover .service-card-title {
    color: var(--icon-color);
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #64748b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

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

.service-features li i {
    width: 20px;
    height: 20px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #06b6d4;
    flex-shrink: 0;
}

.service-card-new:hover .service-features li {
    color: #1e293b;
    font-weight: 500;
}

/* Card Link Arrow */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--icon-color);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    position: relative;
    z-index: 1;
}

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

.service-card-new:hover .service-card-link {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section-new {
        padding: 70px 0;
    }

    .services-header {
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card-new {
        padding: 32px 24px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card-title {
        font-size: 1.25rem;
    }

    /* Show link on mobile */
    .service-card-link {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .services-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }
}