/* Service Pages Styles */
:root {
    /* Staff Management Colors */
    --staff-gradient-1: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --staff-gradient-2: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    --staff-solid: #FF6B6B;
    
    /* Media Management Colors */
    --media-gradient-1: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
    --media-gradient-2: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    --media-solid: #6C63FF;
    
    /* Events Manager Colors */
    --events-gradient-1: linear-gradient(135deg, #FF9A9E 0%, #FAD0C4 100%);
    --events-gradient-2: linear-gradient(135deg, #A8E6CF 0%, #1DE9B6 100%);
    --events-solid: #FF9A9E;
    
    /* Store Management Colors */
    --store-gradient-1: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --store-gradient-2: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --store-solid: #FFD700;
    
    /* Moderation Management Colors */
    --moderation-gradient-1: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    --moderation-gradient-2: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    --moderation-solid: #4A90E2;
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 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-solid);
}

/* Media Features */
.media-features .feature-card {
    border-top: 3px solid var(--media-solid);
}

/* Events Features */
.events-features .feature-card {
    border-top: 3px solid var(--events-solid);
}

/* Store Features */
.store-features .feature-card {
    border-top: 3px solid var(--store-solid);
}

/* Moderation Features */
.moderation-features .feature-card {
    border-top: 3px solid var(--moderation-solid);
}

/* 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-solid);
}

/* Media Process */
.media-process .step-number {
    background: var(--media-solid);
}

/* Events Process */
.events-process .step-number {
    background: var(--events-solid);
}

/* Store Process */
.store-process .step-number {
    background: var(--store-solid);
}

/* Moderation Process */
.moderation-process .step-number {
    background: var(--moderation-solid);
}

/* 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;
    }
} 