/* HP 워크스테이션 페이지 전용 스타일 */

/* 기본 스크롤 설정 */
html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto;
    min-height: 100vh;
}

/* HP 배너 스타일 */
.hp-banner {
    background: linear-gradient(135deg, #0096d6 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
    min-height: auto;
    height: auto;
    overflow: visible;
}

.hp-banner .inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hp-banner .text-box {
    flex: 1;
}

.hp-banner .text-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hp-banner .text-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hp-banner .banner-image {
    flex: 1;
    text-align: center;
}

.hp-banner .banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 제품 카드 스타일 */
.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-specs li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.product-specs li i {
    margin-right: 10px;
    color: #0096d6;
    width: 16px;
    text-align: center;
}

/* 섹션 헤더 */
.section-header {
    margin-bottom: 50px;
}

.section-header h6 {
    color: #0096d6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 기능 리스트 */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.feature-list li i {
    margin-right: 15px;
    color: #28a745;
    font-size: 1.2rem;
}

/* 적용 분야 카드 */
.application-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
}

.application-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0096d6 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.application-card .icon i {
    font-size: 2rem;
    color: white;
}

.application-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.application-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA 섹션 */
.cta-section {
    background: linear-gradient(135deg, #0096d6 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    overflow: visible;
    height: auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #0096d6;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0096d6;
    transform: translateY(-2px);
}

/* 버튼 스타일 */
.btn-primary {
    background: #0096d6;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #545b62;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* 푸터 스타일 */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
    overflow: visible;
    height: auto;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer h4 {
    color: #0096d6;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #0096d6;
}

.footer-contact p {
    color: #ccc;
    line-height: 1.8;
}

.footer-contact p i {
    color: #0096d6;
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #999;
}

/* 기존 스타일 오버라이드 */
.main-banner {
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
}

.content-block {
    overflow: visible !important;
    height: auto !important;
}

/* body 스타일 강제 오버라이드 */
body {
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh !important;
}

/* 텍스트 표시 문제 해결 - 특정 요소만 색상 상속 */
.navbar .container .inner ul li a {
    color: #eee !important;
}

.main-banner .container .text-box {
    color: white !important;
}

.main-banner .container .text-box h1,
.main-banner .container .text-box h2,
.main-banner .container .text-box h3,
.main-banner .container .text-box h4,
.main-banner .container .text-box h5,
.main-banner .container .text-box h6,
.main-banner .container .text-box p,
.main-banner .container .text-box span {
    color: white !important;
}

/* 스크롤바 표시 */
html {
    overflow-y: auto !important;
}

/* WOW.js 애니메이션 비활성화 */
.wow {
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
}

.fadeIn {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* HP 파트너 섹션 스타일 */
.partners .inner ul li {
    padding: 20px 15px;
}

.partners .inner ul li figure {
    max-width: 50%;
    margin: 0 auto;
}

.partners .inner ul li figure img {
    max-width: 100%;
    height: auto;
}

/* 온라인 견적문의 버튼 호버 스타일 */
.cta-buttons .btn-primary:hover {
    color: #0056b3 !important;
}

/* 5개 카드 레이아웃을 위한 커스텀 그리드 */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .col-lg-2-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .hp-banner .inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hp-banner .text-box h2 {
        font-size: 2rem;
    }
    
    .hp-banner .text-box p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .partners .inner ul li {
        padding: 15px 10px;
    }
    
    .partners .inner ul li figure {
        max-width: 40%;
    }
}

@media (max-width: 576px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hp-banner {
        padding: 60px 0;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .application-card {
        padding: 25px 15px;
    }
    
    .application-card .icon {
        width: 60px;
        height: 60px;
    }
    
    .application-card .icon i {
        font-size: 1.5rem;
    }
} 