/* Services Page Modern Professional Design */

/* Hero Section Modern */
.services-hero-modern {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.services-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(175, 244, 43, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(175, 244, 43, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(175, 244, 43, 0.06) 0%, transparent 100%);
    animation: heroServicesFlow 18s ease-in-out infinite;
}

@keyframes heroServicesFlow {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
    33% { 
        opacity: 0.8; 
        transform: scale(1.05) rotate(120deg); 
    }
    66% { 
        opacity: 0.9; 
        transform: scale(0.95) rotate(240deg); 
    }
}

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

.hero-badge-services {
    background: rgba(175, 244, 43, 0.15);
    border: 2px solid rgba(175, 244, 43, 0.3);
    backdrop-filter: blur(15px);
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-badge-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(175, 244, 43, 0.3), transparent);
    transition: left 0.8s;
}

.hero-badge-services:hover::before {
    left: 100%;
}

.hero-title-services {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    position: relative;
}

.hero-title-services .title-line-services {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 30%, #ffffff 70%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
}

.hero-title-services .title-line-services:last-child::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00, var(--primary-color));
    border-radius: 3px;
    animation: expandServiceLine 2.5s ease-out 1s both;
}

@keyframes expandServiceLine {
    from { width: 0; opacity: 0; }
    to { width: 150px; opacity: 1; }
}

.hero-subtitle-services {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description-services {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Hero Stats */
.hero-stats-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
}

.hero-stat-services {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.hero-stat-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(175, 244, 43, 0.1), transparent);
    transition: left 0.8s;
}

.hero-stat-services:hover::before {
    left: 100%;
}

.hero-stat-services:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(175, 244, 43, 0.2);
}

.stat-number-services {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label-services {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Categories Filter */
.services-filter-modern {
    background: var(--bg-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-filter-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(175, 244, 43, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(175, 244, 43, 0.06) 0%, transparent 50%);
}

.filter-container-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.filter-btn-modern {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.filter-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(175, 244, 43, 0.3), transparent);
    transition: left 0.6s;
}

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

.filter-btn-modern:hover {
    background: rgba(175, 244, 43, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(175, 244, 43, 0.2);
}

.filter-btn-modern.active {
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-color: var(--primary-color);
    color: var(--black-color);
    box-shadow: 0 8px 20px rgba(175, 244, 43, 0.3);
}

/* Services Grid Modern */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.service-card-modern {
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card-modern:hover {
    transform: translateY(-20px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(175, 244, 43, 0.25);
}

.service-image-modern {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(175, 244, 43, 0.1), rgba(175, 244, 43, 0.05));
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .service-image-modern img {
    transform: scale(1.1);
}

.service-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(175, 244, 43, 0.8) 0%, rgba(175, 244, 43, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-modern:hover .service-overlay-modern {
    opacity: 1;
}

.service-view-btn {
    background: white;
    color: var(--black-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-view-btn:hover {
    transform: scale(1.1);
    color: var(--black-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-content-modern {
    padding: 40px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-category-modern {
    background: rgba(175, 244, 43, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

.service-title-modern {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-title-modern a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-title-modern a {
    color: var(--primary-color);
}

.service-description-modern {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
}

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features-modern li {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 35px;
    font-weight: 500;
}

.service-features-modern li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features-modern li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--black-color);
    font-weight: 700;
    font-size: 12px;
}

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

.service-features-modern li .feature-number {
    background: var(--primary-color);
    color: var(--black-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
}

.service-price-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-tag-modern {
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    color: var(--black-color);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
}

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

.service-btn-modern {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.service-btn-modern:hover {
    background: var(--primary-color);
    color: var(--black-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 244, 43, 0.3);
}

/* Pricing Section Modern */
.pricing-section-modern {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pricing-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(175, 244, 43, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(175, 244, 43, 0.08) 0%, transparent 50%);
}

.section-header-services {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge-services {
    background: rgba(175, 244, 43, 0.12);
    border: 2px solid rgba(175, 244, 43, 0.25);
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.section-badge-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(175, 244, 43, 0.2), transparent);
    transition: left 0.8s;
}

.section-badge-services:hover::before {
    left: 100%;
}

.section-title-services {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.section-subtitle-services {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Pricing Cards */
.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.pricing-card-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 35px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-modern.featured {
    background: linear-gradient(135deg, rgba(175, 244, 43, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card-modern::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00, var(--primary-color));
    border-radius: 35px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.pricing-card-modern:hover::before {
    opacity: 1;
}

.pricing-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(175, 244, 43, 0.25);
}

.pricing-header-modern {
    margin-bottom: 40px;
}

.plan-name-modern {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.plan-price-modern {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.plan-currency-modern {
    font-size: 2rem;
    vertical-align: top;
}

.plan-period-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex: 1;
}

.pricing-features-modern li {
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 35px;
    text-align: left;
    font-weight: 500;
}

.pricing-features-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    font-weight: 700;
    font-size: 14px;
}

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

.pricing-cta-modern {
    margin-top: auto;
}

.pricing-btn-modern {
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    color: var(--black-color);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.pricing-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

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

.pricing-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(175, 244, 43, 0.4);
    color: var(--black-color);
}

.pricing-btn-modern.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.pricing-btn-modern.btn-outline:hover {
    background: var(--primary-color);
    color: var(--black-color);
}

/* Popular Badge */
.popular-badge-modern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    color: var(--black-color);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(175, 244, 43, 0.3);
}

/* CTA Section Services */
.cta-services-modern {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(175, 244, 43, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(175, 244, 43, 0.1) 0%, transparent 50%);
    animation: ctaServicesGlow 10s ease-in-out infinite;
}

@keyframes ctaServicesGlow {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.8; transform: rotate(180deg); }
}

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

.cta-icon-services {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    animation: floatServiceIcon 4s ease-in-out infinite;
}

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

.cta-title-services {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-description-services {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.7;
}

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

.btn-primary-services {
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    color: var(--black-color);
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary-services:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(175, 244, 43, 0.4);
    color: var(--black-color);
}

.btn-secondary-services {
    background: transparent;
    color: white;
    padding: 20px 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary-services:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Loading States */
.services-loading {
    text-align: center;
    padding: 100px 0;
    color: rgba(255, 255, 255, 0.7);
}

.services-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(175, 244, 43, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.services-empty {
    text-align: center;
    padding: 100px 0;
    color: rgba(255, 255, 255, 0.7);
}

.services-empty i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .pricing-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .hero-stats-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-services {
        font-size: 3rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-stats-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-container-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons-services {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-services,
    .btn-secondary-services {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-hero-content {
        text-align: center;
    }
    
    .service-card-modern,
    .pricing-card-modern {
        padding: 30px 25px;
    }
    
    .section-header-services {
        margin-bottom: 50px;
    }
    
    .filter-btn-modern {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .service-image-modern {
        height: 220px;
    }
}

/* Custom Animations */
.fade-in-services {
    animation: fadeInServices 0.8s ease both;
}

.slide-up-services {
    animation: slideUpServices 0.8s ease both;
}

.scale-in-services {
    animation: scaleInServices 0.6s ease both;
}

@keyframes fadeInServices {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleInServices {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Interactive Elements */
.service-card-modern.card-hover {
    transform: translateY(-20px) !important;
}

.filter-btn-modern.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.filter-btn-modern.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Scroll Progress Bar */
.scroll-progress-services {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #7bdb00);
    z-index: 9999;
    transition: width 0.1s ease;
} 