/* ============================================
   Services Page - Professional Design with Floating Particles - v2.0
   ============================================ */

/* Hero Section - Same as Home Page */
.services-hero-section {
    background: 
        radial-gradient(circle at 20% 50%, rgba(42, 193, 174, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Floating Particles - Same as Home */
.services-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.services-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #2BC7B4, #8B5CF6);
    border-radius: 50%;
    animation: servicesParticleFloat 15s infinite linear;
    opacity: 0.6;
}

.services-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.services-particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.services-particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.services-particle:nth-child(4) {
    left: 40%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.services-particle:nth-child(5) {
    left: 60%;
    animation-delay: 8s;
    animation-duration: 24s;
}

.services-particle:nth-child(6) {
    left: 70%;
    animation-delay: 10s;
    animation-duration: 14s;
}

.services-particle:nth-child(7) {
    left: 80%;
    animation-delay: 12s;
    animation-duration: 26s;
}

.services-particle:nth-child(8) {
    left: 90%;
    animation-delay: 14s;
    animation-duration: 12s;
}

@keyframes servicesParticleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Content */
.services-hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: servicesSlideInUp 0.5s ease forwards;
    text-align: center;
    max-width: 100%;
}

.services-hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.services-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2BC7B4;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 1.5rem;
    background: rgba(42, 193, 174, 0.1);
    border: 2px solid rgba(42, 193, 174, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.services-hero-badge:hover .services-badge-text {
    background: rgba(42, 193, 174, 0.2);
    border-color: rgba(42, 193, 174, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42, 193, 174, 0.3);
}

.services-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Reduced header size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    word-wrap: break-word;
}

.services-hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive typography */
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 100%;
}

.services-hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem); /* Responsive typography */
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.services-hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services-primary-btn,
.services-secondary-btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.services-primary-btn {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.services-primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.services-secondary-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.services-secondary-btn:hover {
    background: #ffffff;
    color: #1e293b;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.services-hero-visual {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    animation: servicesHeroFadeIn 0.6s ease forwards 0.3s;
}

.services-floating-icons {
    position: relative;
    height: 400px;
    width: 100%;
}

.services-icon-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(42, 193, 174, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(42, 193, 174, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: servicesIconFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.services-icon-item i {
    font-size: 2rem;
    color: #2BC7B4;
    transition: all 0.3s ease;
}

.services-icon-item:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(42, 193, 174, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(42, 193, 174, 0.5);
    box-shadow: 0 10px 30px rgba(42, 193, 174, 0.3);
}

.services-icon-item:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

.services-icon-item:nth-child(1) {
    top: 5%;
    left: 15%;
    animation-delay: 0s;
}

.services-icon-item:nth-child(2) {
    top: 15%;
    right: 5%;
    animation-delay: 1s;
}

.services-icon-item:nth-child(3) {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
}

.services-icon-item:nth-child(4) {
    top: 55%;
    right: 15%;
    animation-delay: 3s;
}

.services-icon-item:nth-child(5) {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.services-icon-item:nth-child(6) {
    bottom: 5%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes servicesIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes servicesSlideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes servicesHeroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services List Section - Enhanced Professional Design */
.services-list-section {
    background: 
        radial-gradient(circle at 10% 20%, rgba(42, 193, 174, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #fafbff 0%, #f8faff 25%, #ffffff 50%, #f0f4ff 75%, #fafbff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    min-height: 100vh;
}

/* Enhanced Animated Background with Floating Elements */
.services-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Premium floating orbs */
        radial-gradient(circle 200px at 20% 30%, rgba(42, 193, 174, 0.12) 0%, transparent 60%),
        radial-gradient(circle 180px at 80% 20%, rgba(139, 92, 246, 0.10) 0%, transparent 60%),
        radial-gradient(circle 160px at 30% 80%, rgba(6, 182, 212, 0.11) 0%, transparent 60%),
        radial-gradient(circle 140px at 70% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
        radial-gradient(circle 120px at 60% 10%, rgba(236, 72, 153, 0.09) 0%, transparent 60%),
        /* Sophisticated geometric patterns */
        linear-gradient(45deg, transparent 47%, rgba(42, 193, 174, 0.04) 48%, rgba(42, 193, 174, 0.04) 52%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, rgba(139, 92, 246, 0.04) 48%, rgba(139, 92, 246, 0.04) 52%, transparent 53%),
        linear-gradient(90deg, transparent 48%, rgba(6, 182, 212, 0.03) 49%, rgba(6, 182, 212, 0.03) 51%, transparent 52%);
    background-size: auto, auto, auto, auto, auto, 200px 200px, 180px 180px, 160px 160px;
    animation: servicesListFloating 20s ease-in-out infinite;
    pointer-events: none;
    opacity: 1;
}

@keyframes servicesListFloating {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.9;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(1deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) translateX(-8px) rotate(0deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-10px) translateX(-15px) rotate(-1deg);
        opacity: 0.95;
    }
}

/* Enhanced Service Items with Premium Cards */
.service-item {
    position: relative;
    z-index: 2;
    margin-bottom: 140px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.98);
}

/* Enhanced Service Content */
.service-content {
    padding: 0;
    position: relative;
    z-index: 3;
}

.service-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.service-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8B5CF6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(42, 193, 174, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.service-badge:hover .service-badge-text {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(42, 193, 174, 0.2));
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    color: #7C3AED;
}

.service-badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

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

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin-bottom: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-item:hover .service-title {
    background: linear-gradient(135deg, #8B5CF6 0%, #2BC7B4 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.service-description {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.service-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8B5CF6, #2BC7B4);
    border-radius: 2px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.service-item:hover .service-description::before {
    opacity: 1;
    width: 6px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #475569;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.5);
    font-weight: 500;
}

.service-features li i {
    color: #22c55e;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    padding: 4px;
}

.service-features li:hover {
    color: #1e293b;
    transform: translateX(8px);
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.service-features li:hover i {
    color: #16a34a;
    transform: scale(1.15) rotate(5deg);
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #2BC7B4 100%);
    border: 2px solid transparent;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        0 4px 15px rgba(42, 193, 174, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2BC7B4 0%, #06B6D4 50%, #8B5CF6 100%);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.service-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.service-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.4),
        0 8px 25px rgba(42, 193, 174, 0.3),
        0 0 0 3px rgba(139, 92, 246, 0.1);
    color: #ffffff;
}

.service-cta-btn:hover::before {
    left: 0;
}

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

.service-cta-btn i {
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.service-cta-btn:hover i {
    transform: translateX(5px) rotate(15deg);
    color: #ffffff;
}

/* Enhanced Service Images */
.service-image {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.1);
}

.service-item:hover .service-image img {
    transform: translateY(-8px) scale(1.03) rotate(1deg);
}

/* Odd Services (Left Content, Right Image) */
.service-odd {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-odd:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border-color: rgba(42, 193, 174, 0.2);
}

/* Even Services (Right Content, Left Image) */
.service-even {
    background: rgba(248, 250, 255, 0.8);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.05);
    transition: all 0.4s ease;
}

.service-even:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Final CTA Section */
.services-final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(42, 193, 174, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: servicesCtaFloat 15s ease-in-out infinite;
}

@keyframes servicesCtaFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.services-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.services-cta-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-hero-title {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-item {
        margin-bottom: 80px;
    }
    
    .services-cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 40px 0 30px 0;
        min-height: 60vh;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .services-primary-btn,
    .services-secondary-btn {
        width: 100%;
        max-width: 320px;
        padding: 18px 32px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .services-floating-icons {
        height: 280px;
        margin-top: 2rem;
    }
    
    .services-icon-item {
        width: 55px;
        height: 55px;
    }
    
    .services-icon-item i {
        font-size: 1.3rem;
    }
    
    /* Better mobile positioning for icons */
    .services-icon-item:nth-child(1) {
        top: 10%;
        left: 10%;
    }
    
    .services-icon-item:nth-child(2) {
        top: 10%;
        right: 10%;
    }
    
    .services-icon-item:nth-child(3) {
        top: 40%;
        left: 5%;
    }
    
    .services-icon-item:nth-child(4) {
        top: 40%;
        right: 5%;
    }
    
    .services-icon-item:nth-child(5) {
        bottom: 15%;
        left: 20%;
    }
    
    .services-icon-item:nth-child(6) {
        bottom: 15%;
        right: 20%;
    }
    
    .service-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .service-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
    }
    
    .service-image {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .service-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .services-list-section {
        padding: 60px 0;
    }
    
    .service-item {
        margin-bottom: 50px;
    }
    
    .services-cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .services-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .services-hero-section {
        padding: 30px 0 20px 0;
        min-height: 50vh;
    }
    
    .services-hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .services-hero-description {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .services-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .services-primary-btn,
    .services-secondary-btn {
        max-width: 280px;
        padding: 16px 28px;
        font-size: 0.95rem;
    }
    
    .services-floating-icons {
        height: 220px;
        margin-top: 1.5rem;
    }
    
    .services-icon-item {
        width: 45px;
        height: 45px;
    }
    
    .services-icon-item i {
        font-size: 1.1rem;
    }
    
    /* Compact mobile icon positioning */
    .services-icon-item:nth-child(1) {
        top: 15%;
        left: 15%;
    }
    
    .services-icon-item:nth-child(2) {
        top: 15%;
        right: 15%;
    }
    
    .services-icon-item:nth-child(3) {
        top: 50%;
        left: 8%;
    }
    
    .services-icon-item:nth-child(4) {
        top: 50%;
        right: 8%;
    }
    
    .services-icon-item:nth-child(5) {
        bottom: 20%;
        left: 25%;
    }
    
    .services-icon-item:nth-child(6) {
        bottom: 20%;
        right: 25%;
    }
    
    .service-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem 1rem;
    }
    
    .service-image {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
    
    .service-cta-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .service-badge-text {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .services-list-section {
        padding: 40px 0;
    }
    
    .service-item {
        margin-bottom: 40px;
    }
    
    .services-cta-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .services-cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .services-cta-buttons .btn {
        max-width: 260px;
        padding: 16px 24px;
        font-size: 0.95rem;
    }
    
    .services-final-cta {
        padding: 60px 0;
    }
}

/* Performance optimizations */
.service-item,
.services-icon-item,
.service-image img {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .services-particle,
    .services-icon-item,
    .services-list-section::before,
    .services-final-cta::before {
        animation: none;
    }
    
    .service-item,
    .services-hero-content,
    .services-hero-visual {
        opacity: 1;
        transform: none;
    }
    
    .service-image img:hover,
    .service-item:hover {
        transform: none;
    }
}
