/* company- 네임스페이스 적용 */
.company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px;
}

.company-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.company-animate-on-scroll.company-animate {
    opacity: 1;
    transform: translateY(0);
}

.company-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 2rem 0 4rem 0;
    color: #0C2840;
    position: relative;
}

.company-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #BF9C5A, #A68358);
}

.company-overview {
    background: #ffffff;
    margin-top: 0;
}

.company-overview-content {
    display: grid;
    gap: 60px;
}

.company-overview-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.company-overview-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.company-overview-item:nth-child(even) .company-overview-image {
    order: 2;
}

.company-overview-item:nth-child(even) .company-overview-text {
    order: 1;
}

.company-overview-image {
    overflow: hidden;
    border-radius: 20px;
}

.company-overview-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.company-overview-text h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #0C2840;
}

.company-overview-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #0D0D0D;
}

.company-ceo-interview {
    background: #f8f9fa;
    color: #0D0D0D;
    text-align: center;
}

.company-interview-content {
    max-width: 800px;
    margin: 0 auto;
}

.company-slogan {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #0C2840;
}

.company-interview-image {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px #f8f9fa;
}

.company-interview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.company-interview-quote {
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 40px 0;
    padding: 30px;
    background: rgba(12, 40, 64, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: #0D0D0D;
}

.company-ceo-name {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 20px;
    color: #0C2840;
}

.company-core-values {
    background: #ffffff;
    color: #0D0D0D;
    text-align: center;
}

.company-values-content {
    max-width: 800px;
    margin: 0 auto;
}

.company-main-message {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0C2840;
}

.company-sub-message {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #BF9C5A;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 40px;
    color: #0D0D0D;
}

.company-vision-mission {
    background: #f8f9fa;
}

.company-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-vision-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px #f8f9fa;
}

.company-vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-vision-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0C2840;
}

.company-vision-text h5 {
    font-size: 1rem;
    line-height: 1.8;
    color: #0D0D0D;
    font-weight: 400;
}

.company-business-areas {
    background: #ffffff;
}

.company-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.company-business-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f8f9fa;
}

.company-business-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #f8f9fa;
}

.company-business-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.company-business-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.company-business-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0C2840;
}

.company-business-item p {
    color: #0D0D0D;
    line-height: 1.6;
    font-size: 1rem;
}

.company-history {
    background: #f8f9fa;
    color: #0D0D0D;
    padding: 120px 0;
}

.company-history .company-section-title {
    color: #0C2840;
    margin-bottom: 120px;
    position: relative;
}

.company-history .company-section-title::before {
    content: '법인 설립 예정';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #A68358;
    font-weight: 400;
    letter-spacing: 2px;
}

.company-history .company-section-title::after {
    content: '2025. 06. 01';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #0C2840;
    font-weight: 700;
    background: none;
    width: auto;
    height: auto;
}

.company-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.company-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #BF9C5A, #A68358);
}

.company-timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    align-items: flex-start;
}

.company-timeline-year {
    width: 120px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0C2840;
    text-align: right;
    padding-right: 30px;
    flex-shrink: 0;
}

.company-timeline-content {
    flex: 1;
    padding-left: 40px;
    position: relative;
}

.company-timeline-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #BF9C5A;
    border-radius: 50%;
    border: 3px solid #f8f9fa;
}

.company-timeline-events {
    list-style: none;
}

.company-timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(166, 131, 88, 0.2);
}

.company-timeline-event:last-child {
    border-bottom: none;
}

.company-timeline-month {
    width: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #BF9C5A;
    margin-right: 20px;
    flex-shrink: 0;
}

.company-timeline-description {
    font-size: 0.95rem;
    color: #0D0D0D;
    line-height: 1.5;
}

.company-timeline-description strong {
    color: #0C2840;
    font-weight: 600;
}

.company-jangseong-seasons {
    background: #ffffff;
}

.company-seasons-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.company-slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(12, 40, 64, 0.1);
}

.company-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.company-slide.company-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.company-slide-image {
    width: 100%;
    height: 100%;
}

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

.company-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(12, 40, 64, 0.8));
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
    z-index: 3;
}

.company-slide-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.company-slide-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.company-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.company-nav-btn {
    background: rgba(191, 156, 90, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.company-nav-btn:hover {
    background: #BF9C5A;
    transform: scale(1.1);
}

.company-slider-dots {
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 10;
}

.company-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #A68358;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.company-dot.company-active {
    background: #BF9C5A;
}

.company-closing {
    background: #f8f9fa;
    color: #0D0D0D;
}

.company-closing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-closing-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px #f8f9fa;
}

.company-closing-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.company-closing-text h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #0C2840;
}

.company-closing-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #0D0D0D;
}

.company-cta-button {
    background: linear-gradient(135deg, #BF9C5A, #A68358);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(191, 156, 90, 0.3);
}

/* 반응형 디자인 */

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
    .company-container {
        padding: 100px;
    }
    
    .company-section-title {
        font-size: 1.7rem;
    }
    
    .company-overview-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .company-overview-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .company-overview-item:nth-child(even) .company-overview-image {
        order: 1;
    }
    
    .company-overview-item:nth-child(even) .company-overview-text {
        order: 2;
    }
    
    .company-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .company-closing-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* 연혁 태블릿 반응형 */
    .company-timeline::before {
        left: 80px;
    }
    
    .company-timeline-year {
        width: 80px;
        font-size: 2rem;
        padding-right: 20px;
    }
    
    .company-timeline-content {
        padding-left: 30px;
    }
    
    .company-timeline-month {
        width: 35px;
        font-size: 1rem;
        margin-right: 15px;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
    .company-container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .company-section-title {
        font-size: 1.3rem;
        margin: 3rem 0 2.5rem 0;
    }
    
    .company-main-message {
        font-size: 1.2rem;
    }
    
    .company-sub-message {
        font-size: 1rem;
    }
    
    .company-description {
        padding: 0 20px;
    }
    
    .company-business-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-slide-content {
        padding: 40px 20px 20px;
    }
    
    .company-slide-content h3 {
        font-size: 1.1rem;
    }
    
    .company-slide-content p {
        font-size: 0.95rem;
    }
    
    .company-slider-nav {
        padding: 0 10px;
    }
    
    .company-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .company-overview-image img {
        height: 250px;
    }
    
    .company-vision-image img {
        height: 300px;
    }
    
    .company-closing-image img {
        height: 300px;
    }
    
    .company-interview-image img {
        height: 300px;
    }
    
    .company-slide-image img {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* 연혁 모바일 반응형 */
    .company-history .company-section-title::after {
        font-size: 1.8rem;
    }
    
    .company-timeline {
        padding: 0 20px;
    }
    
    .company-timeline::before {
        left: 60px;
    }
    
    .company-timeline-year {
        width: 60px;
        font-size: 1.5rem;
        padding-right: 15px;
    }
    
    .company-timeline-content {
        padding-left: 25px;
    }
    
    .company-timeline-event {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }
    
    .company-timeline-month {
        width: auto;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .company-timeline-description {
        font-size: 0.9rem;
    }
}

/* 매우 작은 모바일 (320px 이하) */
@media (max-width: 320px) {
    .company-container {
        padding: 0 15px;
    }
    
    .company-section-title {
        font-size: 1.1rem;
    }
    
    .company-main-message {
        font-size: 1rem;
    }
    
    .company-sub-message {
        font-size: 0.9rem;
    }
    
    .company-business-item {
        padding: 20px;
    }
    
    .company-slide-content {
        padding: 30px 15px 15px;
    }
    
    .company-overview-text p, .company-description {
        font-size: 1rem;
    }
    
    .company-interview-quote {
        font-size: 0.85rem;
        padding: 20px;
    }
    
    .company-vision-text h5 {
        font-size: 0.85rem;
    }
    
    .company-closing-text p {
        font-size: 0.9rem;
    }
    
    /* 연혁 매우 작은 모바일 */
    .company-timeline-year {
        font-size: 0.8rem;
    }
    
    .company-timeline-description {
        font-size: 0.85rem;
    }
}

/* 키보드 네비게이션 스타일 */
.keyboard-navigation *:focus {
    outline: 2px solid #BF9C5A;
    outline-offset: 2px;
}

/* 이미지 지연 로딩 */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}
