/* Work Control Page Specific Styles with Unique Animations */

.workcontrol-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.workcontrol-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.workcontrol-hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(93, 173, 226, 0.1) 0%, transparent 50%);
    animation: patternPulse 10s ease-in-out infinite;
}

@keyframes patternPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.workcontrol-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.workcontrol-content {
    color: white;
}

.workcontrol-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-text {
    background: linear-gradient(135deg, #00bfff 0%, #87ceeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workcontrol-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.workcontrol-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary-btn,
.cta-secondary-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.cta-primary-btn {
    background: var(--gradient-primary);
    color: white;
}

.cta-primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.workcontrol-image {
    position: relative;
}

.workcontrol-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
}

/* Elastic In Animation */
@keyframes elasticIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateX(-100px);
    }
    50% {
        transform: scale(1.1) translateX(10px);
    }
    70% {
        transform: scale(0.9) translateX(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

.elastic-in {
    animation: elasticIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
}

/* Wave In Animation */
@keyframes waveIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    50% {
        transform: translateY(-10px) rotateX(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.wave-in {
    animation: waveIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Fade In Scale */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out forwards;
    opacity: 0;
}

/* Rotate In 3D */
@keyframes rotateIn3D {
    from {
        opacity: 0;
        transform: rotateY(-90deg) translateZ(100px);
    }
    to {
        opacity: 1;
        transform: rotateY(0) translateZ(0);
    }
}

.rotate-in-3d {
    animation: rotateIn3D 0.8s ease-out forwards;
    opacity: 0;
}

/* Stagger In */
@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-in {
    animation: staggerIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Cascade In */
@keyframes cascadeIn {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.cascade-in {
    animation: cascadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.benefits-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.how-it-works-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-section .section-title-center {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: var(--shadow-xl);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: white;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .workcontrol-hero {
        grid-template-columns: 1fr;
    }
    
    .workcontrol-title {
        font-size: 2.5rem;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
}

