/* 회사 소개 페이지 전용 스타일 */

/* 회사 개요 섹션 */
.company-overview {
    padding: 8rem 0 5rem;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.overview-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.overview-text h3:first-child {
    margin-top: 0;
}

.overview-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.overview-image {
    text-align: center;
}

.overview-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* 회사 소개 페이지 서비스 섹션 */
.about-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-icon .icon-text {
    font-size: 2.5rem;
    line-height: 1;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* 연락처 정보 섹션 */
.contact-info {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.contact-icon .icon-text {
    font-size: 2rem;
    line-height: 1;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* 찾아오는길 섹션 */
.location-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.location-text-info {
    width: 100%;
    text-align: center;
}

.address-text,
.directions-text {
    margin-bottom: 2.5rem;
}

.address-text:last-child,
.directions-text:last-child {
    margin-bottom: 0;
}

.address-text h3,
.directions-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.address {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    margin: 0;
}

.directions {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.map-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.location-map {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 182, 212, 0.95);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0;
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-link:hover .location-map {
    transform: scale(1.02);
}

.map-link-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    white-space: nowrap;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .company-overview,
    .about-services,
    .contact-info {
        padding: 6rem 0 3rem;
    }
    
    .company-overview {
        padding-top: 7rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-text {
        order: 2;
    }
    
    .overview-image {
        order: 1;
    }
    
    .about-services .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* 찾아오는길 섹션 반응형 */
    .location-section {
        padding: 4rem 0;
    }
    
    .location-content {
        gap: 2.5rem;
    }
    
    .address-text h3,
    .directions-text h3 {
        font-size: 1.3rem;
    }
    
    .address {
        font-size: 1.2rem;
    }
    
    .directions {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .company-overview {
        padding-top: 6rem;
    }
    
    .service-item {
        padding: 2rem 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon img {
        width: 35px;
        height: 35px;
    }
    
    .overview-text h3 {
        font-size: 1.25rem;
    }
    
    .service-item h3 {
        font-size: 1.25rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon img {
        width: 30px;
        height: 30px;
    }
    
    /* 찾아오는길 섹션 모바일 반응형 */
    .location-section {
        padding: 3rem 0;
    }
    
    .location-content {
        gap: 2rem;
    }
    
    .address-text,
    .directions-text {
        margin-bottom: 2rem;
    }
    
    .address-text h3,
    .directions-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .address {
        font-size: 1.1rem;
    }
    
    .directions {
        font-size: 1rem;
    }
    
    .map-container {
        padding: 0.75rem;
    }
    
    .map-overlay {
        bottom: 0.75rem;
    }
    
    .map-link-text {
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }
}