/* Import main styles */
@import url('../styles.css');

/* Service Pages Styles */
:root {
    /* Staff Management Colors */
    --staff-gradient-1: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --staff-gradient-2: linear-gradient(135deg, #000000, #1a1a1a);
    --staff-accent: #6e72fc;
    
    /* Media Management Colors */
    --media-gradient-1: linear-gradient(135deg, #0f0f0f, #1f1f1f);
    --media-gradient-2: linear-gradient(135deg, #000000, #1a1a1a);
    --media-accent: #6C63FF;
    
    /* Events Manager Colors */
    --events-gradient-1: linear-gradient(135deg, #141414, #2a2a2a);
    --events-gradient-2: linear-gradient(135deg, #000000, #1a1a1a);
    --events-accent: #FF9A9E;
    
    /* Store Management Colors */
    --store-gradient-1: linear-gradient(135deg, #1c1c1c, #2f2f2f);
    --store-gradient-2: linear-gradient(135deg, #000000, #1a1a1a);
    --store-accent: #FFD700;
    
    /* Moderation Management Colors */
    --moderation-gradient-1: linear-gradient(135deg, #151515, #252525);
    --moderation-gradient-2: linear-gradient(135deg, #000000, #1a1a1a);
    --moderation-accent: #4A90E2;
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Service Page Hero Section */
.service-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(110, 114, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(173, 29, 235, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.service-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(110, 114, 252, 0.5);
    animation: titleFloat 6s ease-in-out infinite;
}

.service-hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a, #151515, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(110, 114, 252, 0.15) 0%, 
        transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.features:hover::before {
    opacity: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, 
        rgba(110, 114, 252, 0.1) 0%, 
        rgba(173, 29, 235, 0.1) 50%,
        rgba(110, 114, 252, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(110, 114, 252, 0.5);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(110, 114, 252, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(110, 114, 252, 0.3));
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.3); }
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000, #0f0f0f, #000000);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(110, 114, 252, 0.15) 0%, 
        transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.benefits:hover::before {
    opacity: 1;
}

.benefits h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: titleFloat 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(110, 114, 252, 0.3);
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: slideInUp 0.5s ease-out forwards;
    opacity: 0;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(110, 114, 252, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(110, 114, 252, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(110, 114, 252, 0.3));
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.service-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(110, 114, 252, 0.15) 0%, 
        transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-cta:hover::before {
    opacity: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 4s ease-in-out infinite;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #6e72fc, #ad1deb);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(110, 114, 252, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(110, 114, 252, 0.6),
        0 0 30px rgba(110, 114, 252, 0.3);
}

.cta-button i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 3rem;
    }

    .service-hero p {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Service Hero Section */
.service-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.service-nav {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.service-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.service-tagline {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

/* Service Overview Section */
.service-overview {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.service-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.key-point {
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.key-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.key-point i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.key-point h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.key-point p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Service Features Section */
.service-features {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Staff Features */
.staff-features .feature-card {
    border-top: 3px solid var(--staff-accent);
}

/* Media Features */
.media-features .feature-card {
    border-top: 3px solid var(--media-accent);
}

/* Events Features */
.events-features .feature-card {
    border-top: 3px solid var(--events-accent);
}

/* Store Features */
.store-features .feature-card {
    border-top: 3px solid var(--store-accent);
}

/* Moderation Features */
.moderation-features .feature-card {
    border-top: 3px solid var(--moderation-accent);
}

/* Service Process Section */
.service-process {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    z-index: 1;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Staff Process */
.staff-process .step-number {
    background: var(--staff-accent);
}

/* Media Process */
.media-process .step-number {
    background: var(--media-accent);
}

/* Events Process */
.events-process .step-number {
    background: var(--events-accent);
}

/* Store Process */
.store-process .step-number {
    background: var(--store-accent);
}

/* Moderation Process */
.moderation-process .step-number {
    background: var(--moderation-accent);
}

/* Service CTA Section */
.service-cta {
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Staff CTA */
.staff-cta {
    background: var(--staff-gradient-2);
}

/* Media CTA */
.media-cta {
    background: var(--media-gradient-2);
}

/* Events CTA */
.events-cta {
    background: var(--events-gradient-2);
}

/* Store CTA */
.store-cta {
    background: var(--store-gradient-2);
}

/* Moderation CTA */
.moderation-cta {
    background: var(--moderation-gradient-2);
}

/* Animations */
@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-tagline {
        font-size: 1.2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .key-points {
        grid-template-columns: 1fr;
    }
}

/* Staff Management Specific Styles */
.staff-hero {
    background: var(--staff-gradient-1);
}

.staff-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    animation: staffBackgroundMove 20s linear infinite;
}

.key-point i.staff-icon {
    color: #FF6B6B;
    animation: staffPulse 2s infinite;
}

/* Media Management Specific Styles */
.media-hero {
    background: var(--media-gradient-1);
}

.media-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    animation: mediaBackgroundMove 25s linear infinite;
}

.key-point i.media-icon {
    color: #6C63FF;
    animation: mediaFloat 3s infinite;
}

/* Events Manager Specific Styles */
.events-hero {
    background: var(--events-gradient-1);
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M10 0 L20 10 L10 20 L0 10 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    animation: eventsBackgroundMove 22s linear infinite;
}

.key-point i.events-icon {
    color: #FF9A9E;
    animation: eventsBounce 2.5s infinite;
}

/* Store Management Specific Styles */
.store-hero {
    background: var(--store-gradient-1);
}

.store-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="5" y="5" width="10" height="10" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    animation: storeBackgroundMove 24s linear infinite;
}

.key-point i.store-icon {
    color: #FFD700;
    animation: storeRotate 4s infinite;
}

/* Moderation Management Specific Styles */
.moderation-hero {
    background: var(--moderation-gradient-1);
}

.moderation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M10 0 L20 10 L10 20 L0 10 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    animation: moderationBackgroundMove 23s linear infinite;
}

.key-point i.moderation-icon {
    color: #4A90E2;
    animation: moderationShake 2s infinite;
}

/* Unique Animations for Each Service */
@keyframes staffBackgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

@keyframes staffPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes mediaBackgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: -100px -100px; }
}

@keyframes mediaFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes eventsBackgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes eventsBounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes storeBackgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: -50px -50px; }
}

@keyframes storeRotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes moderationBackgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 75px 75px; }
}

@keyframes moderationShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

/* Enhanced Process Timeline */
.process-step {
    position: relative;
    overflow: hidden;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.process-step:hover::after {
    transform: scaleX(1);
}

/* Enhanced CTA Section */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
        animation: none;
    }
    
    .key-point i {
        animation: none;
    }
    
    .process-step::after {
        display: none;
    }
}

/* Credit Footer Styles */
.credit-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credit-footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.credit-footer .copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.credit-footer a {
    color: #FF6B6B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-footer a:hover {
    color: #FF8E53;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .credit-footer {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .credit-footer p {
        font-size: 0.8rem;
    }
    
    .credit-footer .copyright {
        font-size: 0.75rem;
    }
} 