/* 복지제도 페이지 스타일 */

/* Hero Section */
.benefits-hero {
    position: relative;
    height: 450px;
    margin-top: 70px;
    overflow: hidden;
}

.benefits-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: 0;
}

.benefits-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
}

.benefits-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-tagline {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.elem-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: 10%;
    animation: float-1 8s ease-in-out infinite;
}

.elem-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation: float-2 6s ease-in-out infinite;
}

.elem-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -50px;
    animation: float-3 10s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 10px); }
}

/* Benefits Overview */
.benefits-overview {
    padding: 80px 0;
    background-color: white;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Categories */
.benefits-categories {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tab.active {
    background-color: var(--primary);
    color: white;
}

.tab-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 40, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tab.active .tab-icon {
    background-color: white;
}

.tab h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.tab-content {
    margin-top: 30px;
}

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

.benefit-card {
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* All Benefits Section */
.all-benefits {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

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

.benefits-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefits-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefits-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefits-info h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.benefits-info p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Work Environment Section */
.work-environment {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/office.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 46, 74, 0.9) 0%, rgba(231, 40, 85, 0.9) 100%);
}

.environment-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.environment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.environment-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-light);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(231, 40, 85, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .benefits-hero {
        height: 400px;
    }
    
    .benefits-hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .overview-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .overview-text h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .benefits-list {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    
    .environment-content h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .benefits-hero {
        height: 350px;
    }
    
    .benefits-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .overview-text p {
        font-size: 1rem;
    }
    
    .tab {
        min-width: 120px;
        padding: 15px;
    }
    
    .tab-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tab h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .environment-content h2 {
        font-size: 2rem;
    }
    
    .environment-content p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .benefits-hero {
        height: 300px;
    }
    
    .benefits-hero-content h1 {
        font-size: 2rem;
    }
    
    .benefits-hero-content p {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .wave-divider svg {
        height: 50px;
    }
    
    .overview-text h2 {
        font-size: 1.8rem;
    }
    
    .categories-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .tab {
        flex: 0 0 calc(50% - 15px);
        min-width: unset;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefits-item {
        padding: 20px;
    }
    
    .benefits-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
    
    .benefits-info h3 {
        font-size: 1.2rem;
    }
    
    .benefits-info p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .environment-content h2 {
        font-size: 1.8rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}