/* Workers CTA Section Styles */
.workers-cta-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 30px 15px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.workers-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.workers-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-left: 30px;
}

.workers-cta-text {
    color: #333333;
}

.workers-cta-badge {
    display: inline-block;
    background: #292929;
    color: #ffffff;
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workers-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #000000;
}

.workers-cta-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #666666;
}

.workers-cta-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #555555;
    max-width: 450px;
}

.workers-cta-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.workers-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #292929;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.workers-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.workers-cta-button:hover::before {
    left: 100%;
}

.workers-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #333333;
    color: #ffffff;
}

.workers-cta-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.workers-cta-button:hover i {
    transform: translateX(2px);
}

.workers-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.workers-hero-image {
    max-width: 61%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.workers-cta-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Floating animation for the image */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.workers-cta-image::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(29, 29, 29, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .workers-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-top: 25px;
        padding-left: 25px;
    }

    .workers-cta-title {
        font-size: 1.8rem;
    }

    .workers-cta-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .workers-cta-section {
        margin: 20px 10px;
        padding-top: 20px;
    }

    .workers-cta-content {
        padding-top: 20px;
        padding-left: 20px;
    }

    .workers-cta-title {
        font-size: 1.6rem;
    }

    .workers-cta-subtitle {
        font-size: 1rem;
    }

    .workers-cta-stats {
        flex-direction: column;
        gap: 15px;
    }

    .workers-cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .workers-cta-title {
        font-size: 1.4rem;
    }

    .workers-cta-description {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .workers-cta-content {
        padding-top: 15px;
        padding-left: 15px;
    }
}
