/* Modern WorkWithUs Page Styles - 2024 Design Trends */
/* Page-specific styles to prevent conflicts with global styles */

.workwithus-page {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #1e293b;
    overflow-x: hidden;
}

.workwithus-page .section {
    padding: 3rem 0;
    position: relative;
}

/* ========================================
   HERO SECTION - Modern Design
======================================== */

.workwithus-page .workwithus-hero {
    min-height: 44vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.workwithus-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.workwithus-page .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168,85,163,0.1), rgba(192,132,197,0.05));
}

.workwithus-page .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168,85,163,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192,132,197,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168,85,163,0.05) 0%, transparent 50%);
}


/* Hero Badge */
.workwithus-page .hero-badge {
    margin-bottom: 1.5rem;
}

.workwithus-page .badge-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    animation: workwithus-pulse 2s infinite;
}

.workwithus-page .badge-modern i {
    color: #ffffff;
    font-size: 1.2rem;
}

.workwithus-page .badge-text {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

/* Hero Title */
.workwithus-page .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.workwithus-page .title-line {
    display: block;
    animation: workwithus-slideInUp 0.8s ease-out;
}

/* Hero Subtitle */
.workwithus-page .hero-subtitle {
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Modern Buttons */
.workwithus-page .btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.workwithus-page .btn-primary-modern {
    background: linear-gradient(135deg, #a855a3, #c084c5);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.workwithus-page .btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    color: #ffffff;
}

    .workwithus-page .btn-outline-modern {
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
    }

.workwithus-page .btn-outline-modern:hover {
    background: #a855a3;
    color: #ffffff;
    transform: translateY(-2px);
}

.workwithus-page .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.workwithus-page .btn-shine {
    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 ease;
}

.workwithus-page .btn-primary-modern:hover .btn-shine {
    left: 100%;
}

/* Hero Visual */
.workwithus-page .hero-visual-modern {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workwithus-page .floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.workwithus-page .floating-card.card-1 {
    top: -20%;
    left: 10%;
    animation: workwithus-float 3s ease-in-out infinite;
}

.workwithus-page .floating-card.card-2 {
    top: 30%;
    right: 5%;
    animation: workwithus-float 3s ease-in-out infinite 1s;
}

.workwithus-page .floating-card.card-3 {
    bottom: -40%;
    left: 10%;
    animation: workwithus-float 3s ease-in-out infinite 2s;
}

.workwithus-page .card-icon {
    font-size: 1.5rem;
    color: #a855a3;
}

.workwithus-page .hero-illustration {
    position: relative;
    z-index: 2;
}

.workwithus-page .career-illustration {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.workwithus-page .career-icon {
    font-size: 4rem;
    color: #ffffff;
}

/* ========================================
   SECTION HEADERS - Modern Design
======================================== */



.workwithus-page .section-badge i {
    color: #ffffff;
    font-size: 1.5rem;
}

.workwithus-page .section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.workwithus-page .section-subtitle-modern {
    font-size: 1.125rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   OPPORTUNITIES SECTION - Modern Design
======================================== */

.workwithus-page .opportunities-modern {
    background: #f8fafc;
}

.workwithus-page .opportunities-grid {
    position: relative;
}

.workwithus-page .opportunity-card {
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.workwithus-page .opportunity-card-inner {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}

.workwithus-page .opportunity-card:hover .opportunity-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.workwithus-page .opportunity-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.workwithus-page .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.workwithus-page .icon-wrapper i {
    color: #ffffff;
    font-size: 1.8rem;
}

.workwithus-page .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(168,85,163,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workwithus-page .opportunity-card:hover .icon-glow {
    opacity: 1;
}

.workwithus-page .opportunity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workwithus-page .opportunity-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.workwithus-page .opportunity-description {
    color: gray;
    line-height: 1.6;
    margin-bottom: 0;
}

/*.workwithus-page .opportunity-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #ffffff00, #c084c5);
    background-clip: padding-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}*/



.workwithus-page .opportunity-card:hover .opportunity-border {
    opacity: 1;
}

/* ========================================
   WHY WORK SECTION - Modern Design
======================================== */

.workwithus-page .why-work-modern {
    background: #ffffff;
}

.workwithus-page .features-content {
    padding: 2rem;
}

.workwithus-page .application-card {
    height: 100%;
    position: relative;
}

.workwithus-page .application-card-inner {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: all 0.3s ease;
}

.workwithus-page .application-card:hover .application-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.workwithus-page .application-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.workwithus-page .icon-bg {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855a3, #c084c5);
}

.workwithus-page .icon-bg i {
    color: #ffffff;
    font-size: 1.5rem;
}

.workwithus-page .icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(168,85,163,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: workwithus-pulse 2s infinite;
}

.workwithus-page .application-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.workwithus-page .application-description {
    color: gray;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.workwithus-page .application-info {
    color: gray;
    line-height: 1.6;
    margin-bottom: 0;
}

.workwithus-page .application-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1.5rem;
    z-index: -1;
}

.workwithus-page .application-card:hover .application-glow {
    opacity: 0.05;
}

/* ========================================
   CULTURE SECTION - Modern Design
======================================== */

.workwithus-page .culture-modern {
    background: #f8fafc;
}

.workwithus-page .culture-grid {
    position: relative;
}

.workwithus-page .culture-card {
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.workwithus-page .culture-card-inner {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}

.workwithus-page .culture-card:hover .culture-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.workwithus-page .culture-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.workwithus-page .culture-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workwithus-page .culture-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.workwithus-page .culture-description {
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
}

    .workwithus-page .culture-border {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid transparent;
        border-radius: 1.5rem;
        background: linear-gradient(135deg, #a855a30d, #c084c5);
        background-clip: padding-box;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.workwithus-page .culture-card:hover .culture-border {
    opacity: 1;
}

/* ========================================
   CTA SECTION - Modern Design
======================================== */

.workwithus-page .workwithus-cta {
    position: relative;
    overflow: hidden;
}

.workwithus-page .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.workwithus-page .cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #a855a3, #c084c5);
}

.workwithus-page .cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.workwithus-page .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.workwithus-page .float-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: workwithus-float 6s ease-in-out infinite;
}

.workwithus-page .float-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.workwithus-page .float-element.element-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.workwithus-page .float-element.element-3 {
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

.workwithus-page .cta-content {
    position: relative;
    z-index: 2;
}

.workwithus-page .cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.workwithus-page .cta-icon i {
    color: #ffffff;
    font-size: 2rem;
}

.workwithus-page .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.workwithus-page .cta-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.workwithus-page .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes workwithus-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes workwithus-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes workwithus-slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1200px) {
    .workwithus-page .hero-title {
        font-size: 3rem;
    }
    
    .workwithus-page .section-title-modern {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .workwithus-page .hero-title {
        font-size: 2.5rem;
    }
    
    .workwithus-page .section-title-modern {
        font-size: 2rem;
    }
    
    .workwithus-page .floating-card {
        display: none;
    }
    
    .workwithus-page .hero-visual-modern {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .workwithus-page .hero-title {
        font-size: 2rem;
    }
    
    .workwithus-page .section-title-modern {
        font-size: 1.75rem;
    }
    
    .workwithus-page .cta-title {
        font-size: 2rem;
    }
    
    .workwithus-page .btn-modern {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .workwithus-page .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .workwithus-page .opportunity-card-inner,
    .workwithus-page .application-card-inner,
    .workwithus-page .culture-card-inner {
        padding: 2rem;
    }
    
    .workwithus-page .cta-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .workwithus-page .hero-title {
        font-size: 1.75rem;
    }
    
    .workwithus-page .section-title-modern {
        font-size: 1.5rem;
    }
    
    .workwithus-page .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .workwithus-page .cta-title {
        font-size: 1.75rem;
    }
    
    .workwithus-page .badge-modern {
        width: 40px;
        height: 40px;
    }
    
    .workwithus-page .badge-modern i {
        font-size: 1rem;
    }
    
    .workwithus-page .section-badge {
        width: 50px;
        height: 50px;
    }
    
    .workwithus-page .section-badge i {
        font-size: 1.25rem;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
======================================== */

@media (prefers-reduced-motion: reduce) {
    .workwithus-page * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for better accessibility */
.workwithus-page .btn-modern:focus {
    outline: 2px solid #a855a3;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .workwithus-page .hero-title,
    .workwithus-page .section-title-modern {
        background: none;
        color: #a855a3;
        -webkit-background-clip: unset;
        background-clip: unset;
    }
    
    .workwithus-page .badge-text,
    .workwithus-page .section-subtitle-modern {
        color: #000000;
    }
}
