/* ======================================= */
/* CAREER SECTION - MATCHING WEBSITE THEME */
/* ======================================= */

.careers-section {
    /* THEME MATCHING: Use your website's background color */
    background-color: var(--bg-color) !important;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: -160px !important;
    padding-top: 120px;
    min-height: 100vh;
}

/* ======================================= */
/* ANIMATED GEOMETRIC SHAPES BACKGROUND */
/* ======================================= */

/* Geometric shapes container - same as other sections */
.careers-section .geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* All 7 geometric shapes with animations */
.careers-section .shape {
    position: absolute;
    opacity: 0;
    animation: floatShape 8s ease-in-out infinite;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Shape 1 - Circle */
.careers-section .shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    border-radius: 50%;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

/* Shape 2 - Rotated Square */
.careers-section .shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFB14E, transparent);
    transform: rotate(45deg);
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

/* Shape 3 - Triangle */
.careers-section .shape-3 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid rgba(128, 0, 128, 0.15);
    top: 65%;
    left: 12%;
    animation-delay: 2s;
}

/* Shape 4 - Rounded Rectangle */
.careers-section .shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent, #FFB14E);
    border-radius: 20px;
    bottom: 20%;
    right: 8%;
    transform: rotate(15deg);
    animation-delay: 3s;
}

/* Shape 5 - Small Circle */
.careers-section .shape-5 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    top: 45%;
    left: 20%;
    animation-delay: 4s;
}

/* Shape 6 - Conic Gradient Circle */
.careers-section .shape-6 {
    width: 90px;
    height: 90px;
    background: conic-gradient(from 0deg, #FFB14E, transparent, var(--primary-color));
    border-radius: 50%;
    top: 75%;
    right: 25%;
    animation-delay: 1.5s;
}

/* Shape 7 - Line */
.careers-section .shape-7 {
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    top: 40%;
    right: 12%;
    transform: rotate(-15deg);
    animation-delay: 2.5s;
}

/* Show shapes when career section is in view */
.careers-section.animate-in .shape {
    opacity: 0.15;
    transform: scale(1);
}

/* Hide shapes when out of view */
.careers-section.animate-out .shape {
    opacity: 0;
    transform: scale(0.5);
}

/* ======================================= */
/* HERO SECTION - THEMED DESIGN */
/* ======================================= */

.career-hero-section {
    text-align: center;
    padding: 40px 20px 50px 20px;
    position: relative;
    z-index: 2;
}

.career-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    
    /* THEME MATCHING: Gradient text like other sections */
    background: linear-gradient(135deg, var(--primary-color), #FFB14E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.career-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

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

.career-btn-primary {
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.3);
    border: 2px solid var(--primary-color);
}

.career-btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(128, 0, 128, 0.4);
}

.career-btn-secondary {
    padding: 15px 30px;
    background: transparent;
    color: #FFB14E;
    text-decoration: none;
    border: 2px solid #FFB14E;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.career-btn-secondary:hover {
    background: #FFB14E;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 177, 78, 0.3);
}

/* ======================================= */
/* PHILOSOPHY SECTION - THEMED */
/* ======================================= */

.career-philosophy {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.career-philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 500px;
}

.philosophy-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.philosophy-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.philosophy-features li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.philosophy-features li::before {
    content: '✨';
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.philosophy-visual {
    position: relative;
    height: 300px;
    background: rgba(var(--primary-color-rgb, 128, 0, 128), 0.1);
    border: 2px solid rgba(var(--primary-color-rgb, 128, 0, 128), 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
    backdrop-filter: blur(10px);
}

/* ======================================= */
/* WORK HAPPIER SECTION - THEMED */
/* ======================================= */

.work-happier-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.work-happier-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.work-happier-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    
    /* THEME MATCHING: Gradient text */
    background: linear-gradient(135deg, var(--primary-color), #FFB14E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    /* THEME MATCHING: Glass morphism cards */
    background: rgba(var(--bg-color-rgb, 18, 18, 18), 0.8);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(var(--primary-color-rgb, 128, 0, 128), 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #FFB14E);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FFB14E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* ======================================= */
/* OPEN POSITIONS SECTION - THEMED */
/* ======================================= */

.open-positions-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.positions-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.positions-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    
    /* THEME MATCHING: Gradient text */
    background: linear-gradient(135deg, var(--primary-color), #FFB14E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.positions-subtitle {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.positions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.position-item {
    /* THEME MATCHING: Glass morphism job cards */
    background: rgba(var(--bg-color-rgb, 18, 18, 18), 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-color-rgb, 128, 0, 128), 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.position-item:hover {
    background: rgba(var(--bg-color-rgb, 18, 18, 18), 0.8);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.position-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    text-decoration: none;
    color: inherit;
}

.position-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.position-info p {
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
    font-size: 1rem;
}

.position-apply {
    background: linear-gradient(135deg, var(--primary-color), #FFB14E);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.3);
}

.position-item:hover .position-apply {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.4);
}

/* ======================================= */
/* THEME ADJUSTMENTS FOR LIGHT/DARK MODE */
/* ======================================= */

/* Light theme */
body:not([data-theme="dark"]) .careers-section {
    --bg-color-rgb: 244, 244, 244;
}

body:not([data-theme="dark"]) .benefit-card,
body:not([data-theme="dark"]) .position-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(128, 0, 128, 0.2);
}

body:not([data-theme="dark"]) .philosophy-visual {
    background: rgba(128, 0, 128, 0.05);
    border-color: rgba(128, 0, 128, 0.2);
}

body:not([data-theme="dark"]) .careers-section .shape {
    opacity: 0.2;
}

/* Dark theme */
body[data-theme="dark"] .careers-section {
    --bg-color-rgb: 18, 18, 18;
}

body[data-theme="dark"] .benefit-card,
body[data-theme="dark"] .position-item {
    background: rgba(45, 55, 72, 0.6);
    border-color: rgba(255, 215, 0, 0.2);
}

body[data-theme="dark"] .philosophy-visual {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

body[data-theme="dark"] .careers-section .shape {
    opacity: 0.15;
}

/* ======================================= */
/* RESPONSIVE DESIGN */
/* ======================================= */

@media (max-width: 1024px) {
    .careers-section {
        margin-top: -100px !important;
        padding-top: 80px;
    }
    
    .career-philosophy-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .careers-section {
        margin-top: -80px !important;
        padding-top: 60px;
    }
    
    .career-hero-section {
        padding: 30px 20px 40px 20px;
    }
    
    .career-main-title {
        font-size: 3rem;
    }
    
    .work-happier-title,
    .positions-title {
        font-size: 2.2rem;
    }
    
    .philosophy-text h2 {
        font-size: 2rem;
    }
    
    .career-philosophy,
    .work-happier-section,
    .open-positions-section {
        padding: 60px 0;
    }
    
    .career-philosophy-container,
    .work-happier-container,
    .positions-container {
        padding: 0 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .career-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .careers-section {
        margin-top: -60px !important;
        padding-top: 40px;
    }
    
    .career-main-title {
        font-size: 2.5rem;
    }
    
    .benefit-card,
    .position-link {
        padding: 20px;
    }
    
    .position-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .position-apply {
        align-self: flex-end;
    }
}

/* Ensure all content appears above shapes */
.career-hero-section,
.career-philosophy,
.work-happier-section,
.open-positions-section,
.benefit-card,
.position-item {
    position: relative;
    z-index: 2;
}
/* ======================================= */
/* ENHANCED PHILOSOPHY VISUAL */
/* ======================================= */

.philosophy-visual {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, 
        rgba(var(--primary-color-rgb, 128, 0, 128), 0.1) 0%,
        rgba(255, 177, 78, 0.05) 50%,
        rgba(var(--primary-color-rgb, 128, 0, 128), 0.1) 100%
    );
    border: 2px solid rgba(var(--primary-color-rgb, 128, 0, 128), 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Animated background pattern */
.philosophy-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(var(--primary-color-rgb, 128, 0, 128), 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 177, 78, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(var(--primary-color-rgb, 128, 0, 128), 0.06) 3px, transparent 3px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    animation: patternMove 15s ease-in-out infinite;
    z-index: 1;
}

/* Floating geometric shapes inside */
.philosophy-visual::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), #FFB14E);
    border-radius: 50%;
    top: 20%;
    right: 20%;
    opacity: 0.3;
    animation: floatInside 6s ease-in-out infinite;
    z-index: 1;
}

/* Additional floating elements */
.philosophy-visual-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.philosophy-icon-main {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), #FFB14E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.philosophy-text-small {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Create multiple floating shapes */
.philosophy-shape {
    position: absolute;
    z-index: 2;
}

.philosophy-shape-1 {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    border-radius: 50%;
    top: 15%;
    left: 15%;
    animation: floatShape1 8s ease-in-out infinite;
}

.philosophy-shape-2 {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFB14E, transparent);
    transform: rotate(45deg);
    bottom: 25%;
    left: 25%;
    animation: floatShape2 10s ease-in-out infinite;
}

.philosophy-shape-3 {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(var(--primary-color-rgb, 128, 0, 128), 0.3);
    top: 25%;
    right: 30%;
    animation: floatShape3 7s ease-in-out infinite;
}

.philosophy-shape-4 {
    width: 30px;
    height: 30px;
    background: conic-gradient(from 0deg, var(--primary-color), transparent, #FFB14E);
    border-radius: 50%;
    bottom: 20%;
    right: 20%;
    animation: floatShape4 9s ease-in-out infinite;
}

/* Animated border glow effect */
.philosophy-visual-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        #FFB14E, 
        var(--primary-color), 
        #FFB14E
    );
    background-size: 400% 400%;
    border-radius: 17px;
    z-index: 0;
    animation: gradientRotate 8s ease-in-out infinite;
    opacity: 0.6;
}

/* ======================================= */
/* ANIMATIONS */
/* ======================================= */

@keyframes patternMove {
    0%, 100% { 
        transform: translateX(0px) translateY(0px); 
    }
    25% { 
        transform: translateX(-10px) translateY(-5px); 
    }
    50% { 
        transform: translateX(-5px) translateY(-10px); 
    }
    75% { 
        transform: translateX(-15px) translateY(-2px); 
    }
}

@keyframes floatInside {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-15px) scale(1.1);
        opacity: 0.5; 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

@keyframes floatShape1 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8; 
    }
}

@keyframes floatShape2 {
    0%, 100% { 
        transform: translateY(0px) rotate(45deg) scale(1);
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(-8px) rotate(225deg) scale(1.2);
        opacity: 0.7; 
    }
}

@keyframes floatShape3 {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.4; 
    }
    50% { 
        transform: translateY(-12px);
        opacity: 0.6; 
    }
}

@keyframes floatShape4 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-7px) rotate(180deg);
        opacity: 0.9; 
    }
}

@keyframes gradientRotate {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

/* ======================================= */
/* HOVER EFFECTS */
/* ======================================= */

.philosophy-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb, 128, 0, 128), 0.2);
    border-color: var(--primary-color);
}

.philosophy-visual:hover .philosophy-icon-main {
    animation-duration: 1s;
    transform: scale(1.1);
}

.philosophy-visual:hover .philosophy-shape-1,
.philosophy-visual:hover .philosophy-shape-2,
.philosophy-visual:hover .philosophy-shape-3,
.philosophy-visual:hover .philosophy-shape-4 {
    animation-duration: 4s;
}

/* ======================================= */
/* THEME ADJUSTMENTS */
/* ======================================= */

/* Dark theme */
body[data-theme="dark"] .philosophy-visual {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 177, 78, 0.05) 50%,
        rgba(255, 215, 0, 0.1) 100%
    );
    border-color: rgba(255, 215, 0, 0.3);
}

body[data-theme="dark"] .philosophy-visual::before {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 177, 78, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.06) 3px, transparent 3px);
}

body[data-theme="dark"] .philosophy-visual::after {
    background: linear-gradient(45deg, #FFD700, #FFB14E);
}

body[data-theme="dark"] .philosophy-icon-main {
    background: linear-gradient(135deg, #FFD700, #FFB14E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="dark"] .philosophy-visual-border {
    background: linear-gradient(45deg, #FFD700, #FFB14E, #FFD700, #FFB14E);
    background-size: 400% 400%;
}

body[data-theme="dark"] .philosophy-shape-1 {
    background: linear-gradient(45deg, #FFD700, transparent);
}

body[data-theme="dark"] .philosophy-shape-3 {
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

body[data-theme="dark"] .philosophy-shape-4 {
    background: conic-gradient(from 0deg, #FFD700, transparent, #FFB14E);
}

/* ======================================= */
/* RESPONSIVE ADJUSTMENTS */
/* ======================================= */

@media (max-width: 768px) {
    .philosophy-visual {
        height: 250px;
    }
    
    .philosophy-icon-main {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    
    .philosophy-text-small {
        font-size: 0.8rem;
    }
    
    .philosophy-shape-1,
    .philosophy-shape-2,
    .philosophy-shape-4 {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .philosophy-visual {
        height: 200px;
    }
    
    .philosophy-icon-main {
        font-size: 2.5rem;
    }
}
.position-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: rgba(var(--bg-color-rgb, 18, 18, 18), 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-color-rgb, 128, 0, 128), 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.position-item:hover {
    background: rgba(var(--bg-color-rgb, 18, 18, 18), 0.8);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.position-info {
    flex: 1;
}

.position-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.position-info p {
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
    font-size: 1rem;
}

.position-apply {
    background: linear-gradient(135deg, var(--primary-color), #FFB14E);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.3);
    text-decoration: none;
}

.position-apply:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.4);
    text-decoration: none;
    color: #fff;
}
/* ======================================= */
/* FADE-IN ANIMATIONS FOR CAREER SECTION */
/* ======================================= */

/* Initial hidden state for all career elements */
.career-hero-section,
.career-philosophy,
.work-happier-section,
.open-positions-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Individual elements within sections */
.career-main-title,
.career-subtitle,
.career-cta-buttons,
.philosophy-text,
.philosophy-visual,
.work-happier-title,
.positions-title,
.positions-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

/* Benefit cards staggered animation */
.benefit-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease-out;
}

/* Position items staggered animation */
.position-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease-out;
}

/* Geometric shapes fade-in */
.careers-section .geometric-shapes .shape {
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.8s ease-out;
}

/* ======================================= */
/* ANIMATED STATES (when visible) */
/* ======================================= */

/* Main sections visible */
.careers-section.fade-in .career-hero-section,
.careers-section.fade-in .career-philosophy,
.careers-section.fade-in .work-happier-section,
.careers-section.fade-in .open-positions-section {
    opacity: 1;
    transform: translateY(0);
}

/* Individual elements visible */
.careers-section.fade-in .career-main-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.careers-section.fade-in .career-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.careers-section.fade-in .career-cta-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.careers-section.fade-in .philosophy-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.careers-section.fade-in .philosophy-visual {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.careers-section.fade-in .work-happier-title,
.careers-section.fade-in .positions-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.careers-section.fade-in .positions-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Staggered benefit cards animation */
.careers-section.fade-in .benefit-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.careers-section.fade-in .benefit-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.careers-section.fade-in .benefit-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.careers-section.fade-in .benefit-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.careers-section.fade-in .benefit-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.careers-section.fade-in .benefit-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

/* Staggered position items animation */
.careers-section.fade-in .position-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.careers-section.fade-in .position-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.careers-section.fade-in .position-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.careers-section.fade-in .position-item:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.careers-section.fade-in .position-item:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.careers-section.fade-in .position-item:nth-child(6) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

/* Geometric shapes animated entrance */
.careers-section.fade-in .shape-1 {
    opacity: 0.15;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.8s;
}

.careers-section.fade-in .shape-2 {
    opacity: 0.15;
    transform: scale(1) rotate(45deg);
    transition-delay: 1s;
}

.careers-section.fade-in .shape-3 {
    opacity: 0.15;
    transform: scale(1) rotate(0deg);
    transition-delay: 1.2s;
}

.careers-section.fade-in .shape-4 {
    opacity: 0.15;
    transform: scale(1) rotate(15deg);
    transition-delay: 1.4s;
}

.careers-section.fade-in .shape-5 {
    opacity: 0.15;
    transform: scale(1) rotate(0deg);
    transition-delay: 1.6s;
}

.careers-section.fade-in .shape-6 {
    opacity: 0.15;
    transform: scale(1) rotate(0deg);
    transition-delay: 1.8s;
}

.careers-section.fade-in .shape-7 {
    opacity: 0.15;
    transform: scale(1) rotate(-15deg);
    transition-delay: 2s;
}

/* Additional shapes if you have them */
.careers-section.fade-in .shape-8,
.careers-section.fade-in .shape-9,
.careers-section.fade-in .shape-10 {
    opacity: 0.1;
    transform: scale(1) rotate(0deg);
    transition-delay: 2.2s;
}

/* ======================================= */
/* FADE OUT ANIMATIONS (when scrolled away) */
/* ======================================= */

.careers-section.fade-out .career-hero-section,
.careers-section.fade-out .career-philosophy,
.careers-section.fade-out .work-happier-section,
.careers-section.fade-out .open-positions-section {
    opacity: 0.3;
    transform: translateY(-20px);
}

.careers-section.fade-out .geometric-shapes .shape {
    opacity: 0;
    transform: scale(0.8) rotate(10deg);
}

/* ======================================= */
/* SPECIAL HOVER ENHANCEMENTS */
/* ======================================= */

.careers-section.fade-in .benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition-duration: 0.3s;
}

.careers-section.fade-in .position-item:hover {
    transform: translateX(5px) translateY(-2px);
    transition-duration: 0.3s;
}

/* ======================================= */
/* RESPONSIVE FADE-IN ADJUSTMENTS */
/* ======================================= */

@media (max-width: 768px) {
    /* Reduce animation intensity on mobile */
    .career-hero-section,
    .career-philosophy,
    .work-happier-section,
    .open-positions-section {
        transform: translateY(15px);
    }
    
    .benefit-card {
        transform: translateY(15px) scale(0.98);
    }
    
    .position-item {
        transform: translateX(-15px);
    }
    
    /* Faster animations on mobile */
    .career-main-title,
    .career-subtitle,
    .career-cta-buttons,
    .philosophy-text,
    .philosophy-visual {
        transition-duration: 0.4s;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* Respect user's reduced motion preference */
    .career-hero-section,
    .career-philosophy,
    .work-happier-section,
    .open-positions-section,
    .benefit-card,
    .position-item {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}
