@charset "UTF-8";

/**
 * EQNET 2.0 - Base Styles
 * 메인 스타일시트
 */

/* ============================================
   CSS 변수 정의 (색상 팔레트)
============================================ */
:root {
    /* 색상 시스템 */
    --color-dark-black: #1c1c1b;
    --color-light-gray: #c0c5ca;
    --color-off-white: #f7f7f8;
    --color-medium-gray: #828991;
    --color-pale-gray: #ecedee;
    --color-main-blue: #1c45a5;
    --color-light-blue: #6485d2;
    --color-pale-blue: #e2ecff;

    /* 레이아웃 */
    --container-width: 1170px;
    --border-radius: 4px;
    --transition-speed: 0.3s;

    /* 폰트 */
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

    /* 그림자 */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   레이아웃
============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* ============================================
   배경색 유틸리티
============================================ */
.bg-dark-black { background-color: var(--color-dark-black); }
.bg-light-gray { background-color: var(--color-light-gray); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-medium-gray { background-color: var(--color-medium-gray); }
.bg-pale-gray { background-color: var(--color-pale-gray); }
.bg-main-blue { background-color: var(--color-main-blue); }
.bg-light-blue { background-color: var(--color-light-blue); }
.bg-pale-blue { background-color: var(--color-pale-blue); }

/* ============================================
   텍스트 색상 유틸리티
============================================ */
.text-dark-black { color: var(--color-dark-black); }
.text-light-gray { color: var(--color-light-gray); }
.text-off-white { color: var(--color-off-white); }
.text-medium-gray { color: var(--color-medium-gray); }
.text-pale-gray { color: var(--color-pale-gray); }
.text-main-blue { color: var(--color-main-blue); }
.text-light-blue { color: var(--color-light-blue); }
.text-pale-blue { color: var(--color-pale-blue); }
.text-white { color: #fff; }

/* ============================================
   텍스트 정렬
============================================ */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ============================================
   폰트 크기
============================================ */
.fs-12 { font-size: 12px; }
.fs-14 { font-size: 14px; }
.fs-15 { font-size: 15px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }
.fs-28 { font-size: 28px; }
.fs-32 { font-size: 32px; }

/* ============================================
   폰트 굵기
============================================ */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ============================================
   여백 (Margin)
============================================ */
.m-0 { margin: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.ml-10 { margin-left: 10px; }
.ml-20 { margin-left: 20px; }

.mr-10 { margin-right: 10px; }
.mr-20 { margin-right: 20px; }

/* ============================================
   여백 (Padding)
============================================ */
.p-0 { padding: 0; }
.p-10 { padding: 10px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 40px; }

.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }

.pl-10 { padding-left: 10px; }
.pl-20 { padding-left: 20px; }

.pr-10 { padding-right: 10px; }
.pr-20 { padding-right: 20px; }

/* ============================================
   버튼 스타일
============================================ */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--color-main-blue);
    color: #fff;
}

.btn-primary:hover {
    background-color: #153699;
    color: #fff;
}

.btn-secondary {
    background-color: var(--color-light-blue);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5070bd;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-main-blue);
    color: var(--color-main-blue);
}

.btn-outline:hover {
    background-color: var(--color-main-blue);
    color: #fff;
}

/* ============================================
   카드 컴포넌트
============================================ */
.card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark-black);
}

.card-text {
    font-size: 14px;
    color: var(--color-medium-gray);
    line-height: 1.6;
}

/* ============================================
   헤더
============================================ */
.header {
    background: #fff;
    border-bottom: 1px solid var(--color-pale-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-main-blue);
}

.logo-text {
    font-size: 14px;
    color: var(--color-medium-gray);
    display: block;
    margin-top: 4px;
}

/* ============================================
   네비게이션
============================================ */
.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark-black);
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-speed);
}

.nav-link:hover {
    color: var(--color-main-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-main-blue);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================
   메인 슬라이드
============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-main-blue) 0%, var(--color-light-blue) 100%);
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================
   통계 박스
============================================ */
.stats-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   검색 폼
============================================ */
.search-box {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-control {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid var(--color-pale-gray);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: border-color var(--transition-speed);
}

.form-control:focus {
    border-color: var(--color-main-blue);
    outline: none;
}

.form-select {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 1px solid var(--color-pale-gray);
    border-radius: var(--border-radius);
    font-size: 15px;
    background: #fff;
    cursor: pointer;
}

/* ============================================
   섹션 타이틀
============================================ */
.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
    color: var(--color-dark-black);
}

.section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-main-blue);
    margin: 0 auto 20px;
}

/* ============================================
   그리드 레이아웃
============================================ */
.grid {
    display: grid;
    gap: 20px;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   푸터
============================================ */
.footer {
    background: var(--color-dark-black);
    color: var(--color-light-gray);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info {
    flex: 1;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-light-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--color-medium-gray);
}

/* ============================================
   반응형 (Responsive)
============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .search-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* ============================================
   유틸리티
============================================ */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--border-radius); }
.rounded-circle { border-radius: 50%; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ============================================
   메인 페이지 전용 스타일
============================================ */

/* ============================================
   헤더 영역
============================================ */
.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 헤더 상단 영역 */
.header-top {
    padding: 15px 0;
}

.header-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 로고 영역 */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 73px;
    width: auto;
}

/* 헤더 우측 링크 */
.header-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    color: var(--color-dark-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.header-link:hover {
    color: var(--color-main-blue);
}

.header-link i {
    font-size: 28px;
    font-weight: 700;
}

.header-link img {
    height: 28px;
    width: auto;
}

.header-link-zeus::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 5px;
}

.header-link-itube::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 5px;
}

/* 네비게이션 메뉴 */
.main-nav {
    background: white;
    padding: 0;
    border-top: 1px solid #ddd;
}

.main-nav .navbar-collapse {
    display: block !important;
    height: auto !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-menu .nav-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.nav-menu .nav-link {
    display: block;
    padding: 20px 10px;
    color: var(--color-dark-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-menu .nav-link:hover {
    color: var(--color-main-blue);
    border-bottom-color: var(--color-main-blue);
}

/* 서브메뉴 */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 227px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.nav-item:hover .sub-menu {
    opacity: 0.85;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sub-menu li {
    padding: 0;
}

.sub-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--color-dark-black);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.sub-menu a:hover {
    background: var(--color-light-gray);
    color: var(--color-main-blue);
    padding-left: 30px;
}

/* 모바일 토글 버튼 */
.navbar-toggler {
    display: none;
    border: none;
    background: transparent;
    padding: 10px;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-dark-black);
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-dark-black);
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* 모바일 반응형 */
@media (max-width: 991px) {
    .header-top-wrapper {
        flex-wrap: wrap;
    }

    .logo-image {
        height: 45px;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        margin-top: 15px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-border-gray);
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--color-light-gray);
        display: none;
    }

    .nav-item:hover .sub-menu {
        display: block;
    }

    /* Hero 반응형 */
    .hero-main {
        padding: 20px 0;
    }

    #heroCarousel {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 350px;
    }

    .hero-slide-content,
    .carousel-inner,
    .carousel-item {
        height: auto;
        min-height: 350px;
    }

    .stats-panel-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 350px;
        padding: 30px 20px;
    }

    .carousel-subtitle {
        font-size: 28px;
    }

    .carousel-period {
        font-size: 14px;
    }

    .carousel-image {
        max-width: 250px;
    }

    .stats-title {
        font-size: 22px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    /* 바로가기 카드 반응형 */
    .quick-link-card {
        min-height: 120px;
    }

    .quick-link-text h5 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    /* 바로가기 카드 모바일 */
    .quick-link-card {
        min-height: 100px;
        padding: 15px;
    }

    .quick-link-text {
        padding-left: 5px;
    }

    .quick-link-text h5 {
        font-size: 13px;
    }
}

/* 메인 히어로 섹션 */
.hero-main {
    padding: 20px 0;
    position: relative;
    min-height: 526px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-main .container {
    position: relative;
    z-index: 2;
}

/* Carousel 스타일 */
#heroCarousel {
    width: 570px;
    height: 466px;
}

.hero-slide-content {
    position: relative;
    width: 100%;
    height: 466px;
    background: linear-gradient(135deg, #1c45a5 0%, #6485d2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.carousel-inner,
.carousel-item {
    width: 100%;
    height: 466px;
}

.carousel-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 570px;
    width: 100%;
    height: auto;
}

.carousel-caption-custom {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.carousel-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #e2ecff;
}

.carousel-subtitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.carousel-period {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.rating-stars {
    font-size: 32px;
    margin-bottom: 25px;
}

.rating-stars i {
    color: #ffd700;
    margin: 0 3px;
}

.btn-carousel {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-main-blue);
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-carousel:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    margin: 0 4px !important;
    padding: 0 !important;
    text-indent: 0 !important;
}

.carousel-indicators button.active {
    background-color: white !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* 통계 박스 */
.stats-panel-wrapper {
    width: 570px;
    height: 466px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #e2ecff;
}

.stats-panel {
    width: 100%;
}

.stat-card {
    background: white;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* 타이틀 카드 스타일 */
.stat-title-card {
    background: linear-gradient(135deg, #1c45a5 0%, #6485d2 100%);
    color: white;
}

.stat-title-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-title-card .stats-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.4;
}

.stat-title-card .stats-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.stat-icon {
    width: 83px;
    height: auto;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark-black);
    margin-bottom: 10px;
}

.stat-number {
    color: var(--color-light-blue);
    margin: 0;
}

/* 바로가기 카드 */
.quick-link-card-link {
    text-decoration: none;
    display: block;
}

.quick-link-card {
    background: linear-gradient(135deg, #e8f4ff 0%, #cfe4ff 100%);
    padding: 20px;
    transition: all 0.3s;
    height: 100%;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}

.quick-link-card.blue-gradient {
    background: linear-gradient(135deg, #e8f4ff 0%, #cfe4ff 100%);
}

.quick-link-text {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 10px;
}

.quick-link-text h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-dark-black);
    margin: 0;
}

.quick-link-text h5 i {
    font-size: 1.5rem;
    margin-left: 5px;
    color: var(--color-off-white);
    transition: color 0.3s;
}

.quick-link-card:hover .quick-link-text h5 i {
    color: #6485d2;
}

.quick-link-illustration {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.quick-link-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

/* 섹션 헤더 */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 10px;
}
.section-header p {
    color: var(--color-medium-gray);
    font-size: 15px;
}

/* 검색 섹션 */
/* .search-section {
    padding: 30px 0;
} */

.search-box {
    background: white;
    border-radius: 5px;
    padding: 40px;
    background: var(--color-pale-gray);
}

/* 검색 헤더 영역 */
.search-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.search-title-area {
    flex-shrink: 0;
}

.search-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark-black);
    margin: 0;
    line-height: 1.2;
}

.search-subtitle {
    font-size: 15px;
    color: var(--color-light-blue);
    margin: 0;
}

.search-input-area {
    flex: 1;
}

.search-main-input {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    padding: 0 20px;
}

.search-main-input:focus {
    border-color: var(--color-main-blue);
    outline: none;
}

.search-button-area {
    flex-shrink: 0;
}

.btn-search {
    height: 50px;
    padding: 0 40px;
    background: var(--color-dark-black);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: var(--color-medium-gray);
}

/* 검색 필터 영역 */
.search-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.search-filters .form-select,
.search-filters .form-control {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    background: white;
    padding: 0 15px;
}

.search-filters .form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23828991'%3E%3Cpath d='M12 15L7.75732 10.7574L9.17154 9.34314L12 12.1716L14.8284 9.34314L16.2427 10.7574L12 15Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.search-filters .form-select:focus,
.search-filters .form-control:focus {
    border-color: var(--color-main-blue);
    outline: none;
}

/* 장비 목록 타이틀 */
.equipment-list-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark-black);
    margin: 0;
    line-height: 1.2;
}

.equipment-subtitle {
    font-size: 15px;
    color: var(--color-light-blue);
    margin: 0;
}

/* 검색 섹션 반응형 */
@media (max-width: 991px) {
    .search-header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-filters {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .search-box {
        padding: 20px;
    }

    .search-title {
        font-size: 24px;
    }

    .search-filters {
        grid-template-columns: 1fr;
    }
}

/* 장비 카드 */
.equipment-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.equipment-card {
    background: white;
    border-top: 1px solid #c0c5ca;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 15px;
}

.equipment-card-link:hover .equipment-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.equipment-card-img {
    width: 242px;
    height: 164px;
    flex-shrink: 0;
    overflow: hidden;
	margin-top:15px;
}

.equipment-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius:5px;
}

.equipment-card-body {
    padding: 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-main-blue);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.equipment-card-link:hover .equipment-title {
    text-decoration: underline;
}

.equipment-subtitle {
	font-size: 15px;
    color: var(--color-dark-black);
    margin: 0;
	font-weight:400;
}

.equipment-info {
    margin-bottom: 10px;
}

.equipment-info p {
    font-size: 14px;
    color: var(--color-dark-black);
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.equipment-info p i {
    color: var(--color-medium-gray);
    font-size: 15px;
    width: 16px;
    flex-shrink: 0;
}

.equipment-status {
    font-size: 14px;
    margin: auto 0 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.equipment-status i {
    font-size: 10px;
}

.equipment-status.available {
    color: var(--color-main-blue);
}

.equipment-status.available i {
    color: var(--color-main-blue);
}

.equipment-status.unavailable {
    color: var(--color-medium-gray);
}

.equipment-status.unavailable i {
    color: var(--color-medium-gray);
}

/* 장비 카드 반응형 */
@media (max-width: 767px) {
    .equipment-card {
        flex-direction: column;
    }

    .equipment-card-img {
        width: 100%;
        height: 180px;
    }

    .equipment-card-body {
        padding: 15px;
    }
}

/* 공지사항/FAQ 섹션 */
.notice-faq-section {
    padding: 60px 0;
    background: #e2ecff;
}

/* 공지사항 박스 */
.notice-box {
    padding: 30px 40px;
    height: 100%;
}

/* FAQ 박스 */
.faq-box {
    padding: 30px 40px;
    height: 100%;
}

/* 공지사항/FAQ 헤더 */
.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
	border-bottom: 1px solid #828991;
}

.notice-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark-black);
    margin: 0;
}

.notice-title-en {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-light-blue);
    margin-left: 10px;
}

.notice-more {
    font-size: 24px;
    color: var(--color-medium-gray);
    text-decoration: none;
    line-height: 1;
}

.notice-more:hover {
    color: var(--color-main-blue);
}

/* 공지사항 리스트 */
.notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notice-item {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #c0c5ca;
}

.notice-item:first-child {
    border-top: none;
}

/* 날짜 박스 */
.notice-date {
	flex-shrink: 0;
    width: 90px;
    text-align: center;
    margin-right: 20px;
    padding: 10px 10px;
    border-right: 1px solid #e9ecef;
    background: #fff;
}

.date-day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-main-blue);
    line-height: 1.2;
}

.date-ym {
    display: block;
    font-size: 13px;
    color: var(--color-medium-gray);
    margin-top: 2px;
}

/* 공지사항 링크 */
.notice-link {
    font-size: 15px;
    color: var(--color-dark-black);
    text-decoration: none;
    line-height: 1.5;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-link:hover {
    color: var(--color-main-blue);
}

/* FAQ 리스트 */
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-item {
    padding: 4px 0;
    border-bottom: 1px solid #c0c5ca;
    min-height: 85px;
    display: flex;
    align-items: center;
}

.faq-link {
    font-size: 15px;
    color: var(--color-dark-black);
    text-decoration: none;
    line-height: 1.5;
    display: block;
}

.faq-link:hover {
    color: var(--color-main-blue);
}

/* 공지사항/FAQ 반응형 */
@media (max-width: 767px) {
    .notice-box,
    .faq-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .notice-title {
        font-size: 20px;
    }

    .notice-date {
        width: 60px;
        margin-right: 15px;
        padding-right: 15px;
    }

    .date-day {
        font-size: 22px;
    }

    .notice-link,
    .faq-link {
        font-size: 14px;
    }
}

/* 스크롤 배너 섹션 */
.bnr-section {
    padding: 30px 0;
    background: #fff;
}

/* endless_scroll 플러그인이 자동으로 스타일을 적용하므로 최소한의 CSS만 사용 */
#bnr1 img,
#bnr2 img {
    max-width: none; /* reset.css의 max-width: 100% 오버라이드 - 플러그인 width 계산에 필요 */
    padding: 0 10px;
    height: 52px;
    width: auto;
}

.mg {
    margin-left: 0;
}

/* ============================================
   Footer 스타일
============================================ */
.site-footer {
    background: var(--color-dark-black);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    flex-shrink: 0;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address p {
    margin: 0;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.footer-buttons .btn {
    padding: 6px 20px;
    font-size: 13px;
    border-radius: 3px;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
}

.footer-buttons .btn-outline-light {
    border: 1px solid #666;
    color: rgba(255, 255, 255, 0.9);
    background: #444;
}

.footer-buttons .btn-outline-light:hover {
    border-color: #888;
    color: #fff;
    background: #555;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
    margin: 0;
}

/* Footer 반응형 */
@media (max-width: 991px) {
    .footer-main {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo {
        padding-right: 0;
        border-right: none;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-buttons .btn {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .footer-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   서브페이지 스타일
============================================ */

/* 서브 배너 */
.sub-banner {
    width: 100%;
    overflow: hidden;
}

.sub-banner-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 브레드크럼 네비게이션 */
.breadcrumb-nav {
    background: var(--color-pale-gray);
    padding: 15px 0;
}

.breadcrumb-nav .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.breadcrumb-nav .breadcrumb-item {
    font-size: 14px;
    color: var(--color-medium-gray);
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--color-medium-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--color-main-blue);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--color-dark-black);
    font-weight: 500;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--color-light-gray);
    padding: 0 10px;
}

.breadcrumb-nav .breadcrumb-item i {
    margin-right: 5px;
}

/* 서브 컨텐츠 영역 */
.sub-content {
    padding: 50px 0 80px;
    min-height: 500px;
}

/* 페이지 헤더 */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-pale-gray);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark-black);
    margin: 0;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-main-blue);
}

/* 컨텐츠 영역 */
.content-area {
    line-height: 1.8;
    color: var(--color-dark-black);
}

.content-area img {
    max-width: 100%;
    height: auto;
}

.content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-area table th,
.content-area table td {
    border: 1px solid var(--color-pale-gray);
    padding: 12px 15px;
    text-align: left;
}

.content-area table th {
    background: var(--color-pale-gray);
    font-weight: 600;
}

.content-area h3,
.content-area h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-dark-black);
}

.content-area p {
    margin-bottom: 15px;
}

.content-area ul,
.content-area ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-area li {
    margin-bottom: 8px;
}

/* 서브페이지 반응형 */
@media (max-width: 991px) {
    .page-title {
        font-size: 28px;
    }

    .sub-content {
        padding: 40px 0 60px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-nav .breadcrumb {
        justify-content: center;
    }

    .page-title {
        font-size: 24px;
    }

    .page-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .sub-content {
        padding: 30px 0 50px;
    }
}

.btn-0065cd {
    color: #fff;
    background-color: #0065cd;
    border-color: #0065cd;
}
.sp-lh_25 {
    line-height: 25px;
}

/* ============================================
   장비 리스트 페이지 스타일
============================================ */

/* 검색 히어로 섹션 */
.equipment-search-hero {
    position: relative;
    padding: 60px 0;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.equipment-search-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.equipment-search-hero .container {
    position: relative;
    z-index: 2;
}

.search-hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* 히어로 섹션 검색 박스 (어두운 배경용) */
.search-box-hero {
    background: rgba(110, 118, 128, 0.8);
    border-radius: 8px;
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.search-box-hero .search-title {
    color: #fff;
}

.search-box-hero .search-subtitle {
    color: #999;
}

.search-box-hero .search-main-input {
    border: none;
}

.search-box-hero .btn-search {
    background: #333;
}

.search-box-hero .btn-search:hover {
    background: #555;
}

.search-box-hero .search-filters .form-select,
.search-box-hero .search-filters .form-control {
    border: none;
}

/* 리스트 페이지 */
.equipment-list-page {
    background: #fff;
    padding-top: 30px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-dark-black);
    margin-bottom: 0;
}

.list-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-black);
    margin: 0;
}

.list-title-en {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-medium-gray);
    margin-left: 10px;
}

.list-count {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.list-count strong {
    color: var(--color-main-blue);
}

/* 장비 리스트 그리드 */
.equipment-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.equipment-list-item {
    border-bottom: 1px solid #eee;
}

.equipment-list-item:nth-child(odd) {
    border-right: 1px solid #eee;
}

.equipment-list-link {
    display: flex;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
}

.equipment-list-link:hover {
    background: #f9f9f9;
}

.equipment-list-img {
    width: 180px;
    height: 130px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 5px;
    background: #f5f5f5;
    margin-right: 25px;
}

.equipment-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-list-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-main-blue);
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.equipment-list-link:hover .equipment-list-name {
    text-decoration: underline;
}

.equipment-list-name-en {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
}

.equipment-list-meta {
    margin-bottom: 10px;
}

.equipment-list-meta p {
    font-size: 14px;
    color: #555;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.equipment-list-meta p i {
    color: #999;
    font-size: 16px;
}

.equipment-list-meta p a,
.equipment-list-meta p .phone-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.equipment-list-meta p a:hover,
.equipment-list-meta p .phone-link:hover {
    text-decoration: underline;
}

.equipment-list-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
}

.equipment-list-status i {
    font-size: 16px;
}

.equipment-list-status.available {
    color: var(--color-main-blue);
}

.equipment-list-status.unavailable {
    color: #999;
}

.equipment-list-status.repairing {
    color: #ef6c00;
}

/* 데이터 없음 메시지 */
.no-data-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-data-message i {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.no-data-message p {
    font-size: 18px;
    margin: 0;
}

/* 페이지네이션 */
.pagination-nav {
    margin-top: 40px;
    padding-bottom: 20px;
}

.pagination-nav .pagination {
    gap: 5px;
}

.pagination-nav .page-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    padding: 0;
    transition: all 0.3s;
}

.pagination-nav .page-link:hover {
    background: var(--color-main-blue);
    border-color: var(--color-main-blue);
    color: #fff;
}

.pagination-nav .page-item.active .page-link {
    background: var(--color-main-blue);
    border-color: var(--color-main-blue);
    color: #fff;
}

.pagination-nav .page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}

/* 장비 리스트 반응형 */
@media (max-width: 991px) {
    .search-hero-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .equipment-search-box {
        padding: 20px;
    }

    .search-main-row {
        flex-wrap: wrap;
    }

    .search-label {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-input-wrapper {
        flex: 1;
    }

    .search-filter-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .equipment-search-hero {
        padding: 40px 0;
        min-height: auto;
    }

    .search-hero-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .search-main-row {
        flex-direction: column;
    }

    .search-input-wrapper,
    .btn-search-hero {
        width: 100%;
    }

    .btn-search-hero {
        margin-top: 10px;
    }

    .search-filter-row {
        grid-template-columns: 1fr;
    }

    .equipment-list-grid {
        grid-template-columns: 1fr;
    }

    .equipment-list-item:nth-child(odd) {
        border-right: none;
    }

    .equipment-list-link {
        flex-direction: column;
        padding: 20px 15px;
    }

    .equipment-list-img {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .equipment-list-name {
        font-size: 16px;
    }

    .list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .list-title {
        font-size: 24px;
    }
}

/* ============================================
   장비 상세보기 페이지 스타일
============================================ */

.equipment-detail-page {
    background: #f9f9f9;
}

.equipment-detail {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 장비 이미지 섹션 */
.equipment-image-section {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnail-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: #f5f5f5;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--color-main-blue);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 장비 정보 섹션 */
.equipment-info-section {
    padding-left: 30px;
}

.equipment-name {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.equipment-name h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-black);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.equipment-name-en {
    font-size: 16px;
    color: var(--color-medium-gray);
    margin: 0;
}

/* 예약 상태 배지 */
.reservation-status {
    margin-bottom: 25px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
}

.status-badge i {
    font-size: 18px;
}

.status-badge.available {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.unavailable {
    background: #ffebee;
    color: #c62828;
}

.status-badge.repairing {
    background: #fff3e0;
    color: #ef6c00;
}

/* 정보 테이블 */
.info-table-wrapper {
    margin-top: 20px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 14px 15px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.info-table th {
    width: 140px;
    background: #f9f9f9;
    color: var(--color-dark-black);
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.info-table th i {
    margin-right: 8px;
    color: var(--color-main-blue);
}

.info-table td {
    color: #666;
}

/* 섹션 타이틀 바 */
.section-title-bar {
    background: linear-gradient(135deg, #1c45a5 0%, #6485d2 100%);
    padding: 15px 25px;
    border-radius: 5px;
    margin-bottom: 0;
}

.section-title-bar h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-bar h3 i {
    font-size: 20px;
}

/* 장비 설명 섹션 */
.equipment-description-section {
    margin-top: 40px;
}

.description-content {
    padding: 25px;
    background: #fafafa;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 5px 5px;
    line-height: 1.8;
    color: #555;
    min-height: 100px;
}

.description-content .no-data {
    color: #999;
    font-style: italic;
    margin: 0;
}

/* 장비 이용안내 섹션 */
.equipment-usage-section {
    margin-top: 40px;
}

.usage-info-grid {
    padding: 25px;
    background: #fafafa;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.usage-info-grid .info-table {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.usage-info-grid .info-table th {
    width: 130px;
}

/* 버튼 영역 */
.button-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.button-area .btn {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 5px;
}

.button-area .btn i {
    margin-right: 8px;
}

.button-area .btn-secondary {
    background: var(--color-dark-black);
    border-color: var(--color-dark-black);
    color: #fff;
}

.button-area .btn-secondary:hover {
    background: #333;
    border-color: #333;
}

/* 장비 상세 반응형 */
@media (max-width: 991px) {
    .equipment-detail {
        padding: 25px;
    }

    .equipment-image-section {
        position: static;
        margin-bottom: 30px;
    }

    .main-image-wrapper {
        height: 300px;
    }

    .equipment-info-section {
        padding-left: 0;
    }

    .equipment-name h2 {
        font-size: 24px;
    }

    .info-table th {
        width: 120px;
    }
}

@media (max-width: 767px) {
    .equipment-detail {
        padding: 20px;
    }

    .main-image-wrapper {
        height: 250px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .equipment-name h2 {
        font-size: 20px;
    }

    .equipment-name-en {
        font-size: 14px;
    }

    .info-table th,
    .info-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .info-table th {
        width: 100px;
    }

    .section-title-bar {
        padding: 12px 20px;
    }

    .section-title-bar h3 {
        font-size: 16px;
    }

    .description-content,
    .usage-info-grid {
        padding: 15px;
    }

    .button-area .btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ============================================
   Feature Card 스타일 (서브페이지 기능소개)
============================================ */

/* 상단 구분선 */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--color-dark-black);
    border-radius: 2px;
}

/* 타이틀 배지 */
.badge-title {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-main-blue);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
}

/* 기능 카드 */
.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background: #fff;
    text-align: left;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    border-color: var(--color-main-blue);
    box-shadow: 0 4px 15px rgba(0, 101, 205, 0.1);
}

/* 숫자 영역 */
.feature-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0ab7f1;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
}

/* 컨텐츠 영역 */
.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark-black);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* 아이콘 영역 */
.feature-icon {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.feature-icon img {
    max-width: 100%;
    height: auto;
}

/* Feature Card 반응형 */
@media (max-width: 767px) {
    .feature-card {
        flex-wrap: wrap;
        gap: 12px;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-list li {
        font-size: 13px;
    }

    .feature-icon {
        width: 50px;
    }

    .badge-title {
        font-size: 15px;
        padding: 10px 20px;
    }
}

/* ============================================
   섹션 공통 스타일
============================================ */

/* 회색 배경 섹션 */
.section-gray {
    background: #f9f9f9;
}

/* 섹션 타이틀 */
.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark-black);
}

/* ============================================
   Guide Card 스타일 (이용안내)
============================================ */

.guide-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px 20px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.guide-card:hover {
    border-color: var(--color-main-blue);
    box-shadow: 0 4px 15px rgba(0, 101, 205, 0.1);
}

.guide-icon {
    margin-bottom: 20px;
}

.guide-icon img {
    max-width: 240px;
    height: auto;
}

.guide-content {
    padding-top: 10px;
}

.guide-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.guide-divider {
    width: 90%;
    height: 1px;
    border-top: 1px dashed #eaeaea;
    margin: 0 auto 15px;
}

.guide-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Guide Card 반응형 */
@media (max-width: 767px) {
    .guide-card {
        padding: 20px 15px;
    }

    .guide-icon img {
        max-width: 60px;
    }

    .guide-title {
        font-size: 15px;
    }

    .guide-desc {
        font-size: 13px;
    }
}

/* ============================================
   DataTable 스타일
============================================ */
.data-table {
    width: 100% !important;
}

.data-table thead th {
    background: var(--color-pale-gray);
    font-weight: 600;
    color: var(--color-dark-black);
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.data-table tbody td {
    vertical-align: middle;
    color: #666;
}

.data-table tbody tr:hover {
    background-color: rgba(0, 101, 205, 0.05);
}

/* DataTables 컨트롤 스타일 */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    padding: 10px 0;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 6px 12px;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 6px 12px;
}

/* 페이지네이션 스타일 */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 5px !important;
    margin: 0 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--color-main-blue) !important;
    border-color: var(--color-main-blue) !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--color-main-blue) !important;
    border-color: var(--color-main-blue) !important;
    color: #fff !important;
}

/* DataTable 버튼 스타일 */
.data-table .btn-outline-primary {
    border-color: var(--color-main-blue);
    color: var(--color-main-blue);
}

.data-table .btn-outline-primary:hover {
    background: var(--color-main-blue);
    color: #fff;
}

.data-table .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.data-table .btn-outline-secondary:hover {
    background: #6c757d;
    color: #fff;
}

/* DataTable 반응형 */
@media (max-width: 767px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        text-align: center;
        float: none;
    }

    .dataTables_wrapper .dataTables_filter {
        margin-top: 10px;
    }
}

/* ============================================
   게시판 스타일 (BBS)
============================================ */

/* 게시판 테이블 */
.bbs-table {
    width: 100%;
    border-collapse: collapse;
}

.bbs-table thead {
    background: var(--color-pale-gray);
    border-top: 2px solid var(--color-dark-black);
}

.bbs-table thead th {
    font-weight: 600;
    color: var(--color-dark-black);
    padding: 12px 10px;
    border-bottom: 1px solid #dee2e6;
    white-space: nowrap;
}

.bbs-table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    color: #666;
    vertical-align: middle;
}

.bbs-table tbody tr:hover {
    background-color: rgba(0, 101, 205, 0.03);
}

/* 공지사항 행 */
.bbs-table .notice-row {
    background-color: #f8f9fa;
}

.bbs-table .notice-row:hover {
    background-color: #f0f4f8;
}

/* 게시판 제목 링크 */
.bbs-title {
    color: var(--color-dark-black);
    text-decoration: none;
    transition: color 0.2s;
}

.bbs-title:hover {
    color: var(--color-main-blue);
}

/* 답변 들여쓰기 */
.reply-indent {
    color: #999;
    margin-right: 5px;
}

/* 페이지네이션 */
.bbs-pagination {
    margin-top: 30px;
}

.bbs-pagination .pagination {
    gap: 3px;
}

.bbs-pagination .page-link {
    color: var(--color-dark-black);
    border: 1px solid #dee2e6;
    padding: 8px 14px;
    border-radius: 4px;
}

.bbs-pagination .page-link:hover {
    background: var(--color-main-blue);
    border-color: var(--color-main-blue);
    color: #fff;
}

.bbs-pagination .page-item.active .page-link {
    background: var(--color-main-blue);
    border-color: var(--color-main-blue);
    color: #fff;
}

/* 검색 영역 */
.bbs-search {
    padding: 20px;
    background: var(--color-pale-gray);
    border-radius: 8px;
}

.bbs-search .form-control {
    border: 1px solid #dee2e6;
}

.bbs-search .form-check-label {
    color: #666;
    font-size: 14px;
}

/* 갤러리형 게시판 */
.gallery-list {
    margin-top: 20px;
}

.gallery-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.gallery-card:hover {
    border-color: var(--color-main-blue);
    box-shadow: 0 4px 15px rgba(0, 101, 205, 0.1);
}

.gallery-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-card:hover .gallery-thumb img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 15px;
    text-align: center;
}

.gallery-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark-black);
    text-decoration: none;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-title:hover {
    color: var(--color-main-blue);
}

.gallery-date {
    font-size: 13px;
    color: #999;
}

/* 웹진형 게시판 */
.webzine-list {
    margin-top: 20px;
}

.webzine-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.webzine-item:first-child {
    border-top: 2px solid var(--color-dark-black);
}

.webzine-thumb {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.webzine-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.webzine-item:hover .webzine-thumb img {
    transform: scale(1.05);
}

.webzine-content {
    padding: 10px 0 10px 20px;
}

.webzine-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-black);
    text-decoration: none;
    margin-bottom: 10px;
}

.webzine-title:hover {
    color: var(--color-main-blue);
}

.webzine-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.webzine-date {
    font-size: 13px;
    color: #999;
}

/* 게시판 반응형 */
@media (max-width: 767px) {
    .bbs-table thead {
        display: none;
    }

    .bbs-table tbody tr {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .bbs-table tbody td {
        display: block;
        padding: 3px 0;
        border: none;
        text-align: left !important;
    }

    .bbs-table tbody td:first-child {
        display: inline-block;
        margin-right: 10px;
    }

    .bbs-table tbody td:nth-child(3),
    .bbs-table tbody td:nth-child(4),
    .bbs-table tbody td:nth-child(5) {
        display: inline-block;
        font-size: 12px;
        color: #999;
    }

    .bbs-table tbody td:nth-child(3)::after,
    .bbs-table tbody td:nth-child(4)::after {
        content: " | ";
        margin: 0 5px;
    }

    .bbs-search {
        padding: 15px;
    }

    .bbs-search .form-control {
        width: 100% !important;
        margin-top: 10px;
    }

    .bbs-search .btn {
        width: 100%;
        margin-top: 10px;
    }

    .gallery-thumb {
        height: 150px;
    }

    .webzine-content {
        padding: 15px 0 0 0;
    }

    .webzine-thumb {
        height: 120px;
    }

    .webzine-title {
        font-size: 16px;
    }
}

/* ============================================
   게시판 상세보기 스타일 (BBS View)
============================================ */

.bbs-view {
    background: #fff;
}

/* 상세보기 헤더 */
.bbs-view-header {
    border-top: 2px solid var(--color-dark-black);
    border-bottom: 1px solid #eee;
    padding: 25px 20px;
    background: var(--color-pale-gray);
}

.bbs-view-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark-black);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.bbs-view-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bbs-view-meta .meta-item {
    font-size: 14px;
    color: #666;
}

.bbs-view-meta .meta-item i {
    margin-right: 5px;
    color: #999;
}

/* 첨부파일 영역 */
.bbs-view-files {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.bbs-view-files .file-label {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-black);
}

.bbs-view-files .file-label i {
    margin-right: 5px;
}

.bbs-view-files .file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.bbs-view-files .file-item {
    font-size: 14px;
    color: var(--color-main-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.bbs-view-files .file-item:hover {
    color: #004a99;
    text-decoration: underline;
}

.bbs-view-files .file-item i {
    margin-right: 3px;
}

/* 동영상 영역 */
.bbs-view-video {
    padding: 20px;
    background: #000;
}

/* 이미지 영역 */
.bbs-view-image {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.bbs-view-image img {
    max-width: 100%;
    height: auto;
}

/* 내용 영역 */
.bbs-view-content {
    padding: 30px 20px;
    min-height: 200px;
    line-height: 1.8;
    color: var(--color-dark-black);
    border-bottom: 1px solid #eee;
}

.bbs-view-content img {
    max-width: 100%;
    height: auto;
}

.bbs-view-content table {
    width: 100%;
    border-collapse: collapse;
}

.bbs-view-content table th,
.bbs-view-content table td {
    border: 1px solid #ddd;
    padding: 10px;
}

/* 댓글 영역 */
.bbs-comments {
    margin-top: 30px;
    border-top: 2px solid var(--color-dark-black);
}

.bbs-comments .comments-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-black);
    padding: 15px 20px;
    margin: 0;
    background: var(--color-pale-gray);
    border-bottom: 1px solid #eee;
}

.bbs-comments .comments-title i {
    margin-right: 8px;
    color: var(--color-main-blue);
}

/* 댓글 목록 */
.bbs-comments .comments-list {
    max-height: 400px;
    overflow-y: auto;
}

.bbs-comments .comment-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.bbs-comments .comment-item:last-child {
    border-bottom: none;
}

.bbs-comments .comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.bbs-comments .comment-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-black);
}

.bbs-comments .comment-author i {
    margin-right: 5px;
    color: #999;
}

.bbs-comments .comment-date {
    font-size: 13px;
    color: #999;
}

.bbs-comments .comment-delete {
    margin-left: auto;
    color: #999;
    font-size: 14px;
    transition: color 0.2s;
}

.bbs-comments .comment-delete:hover {
    color: #dc3545;
}

.bbs-comments .comment-body {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.bbs-comments .no-comments {
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* 댓글 작성 폼 */
.bbs-comments .comment-form {
    padding: 15px 20px;
    background: var(--color-pale-gray);
    border-top: 1px solid #eee;
}

.bbs-comments .comment-form textarea {
    resize: none;
}

/* 버튼 영역 */
.bbs-view-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    border-top: 1px solid #eee;
}

.bbs-view-buttons .btn {
    min-width: 100px;
}

.bbs-view-buttons .btn i {
    margin-right: 5px;
}

/* 푸터 텍스트 */
.bbs-view-footer {
    padding: 20px;
    background: var(--color-pale-gray);
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 상세보기 반응형 */
@media (max-width: 767px) {
    .bbs-view-header {
        padding: 20px 15px;
    }

    .bbs-view-title {
        font-size: 18px;
    }

    .bbs-view-meta {
        gap: 10px 15px;
    }

    .bbs-view-meta .meta-item {
        font-size: 13px;
    }

    .bbs-view-files {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .bbs-view-content {
        padding: 20px 15px;
    }

    .bbs-view-buttons {
        flex-wrap: wrap;
        padding: 20px 15px;
    }

    .bbs-view-buttons .btn {
        min-width: 80px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .bbs-comments .comment-form .row {
        flex-direction: column;
    }

    .bbs-comments .comment-form .col-md-2,
    .bbs-comments .comment-form .col-md-6 {
        width: 100%;
    }
}

/* ============================================
   장비 상세 페이지 (새 디자인)
============================================ */

/* 페이지 타이틀 영문 */
.page-title-en {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-medium-gray);
    margin-left: 10px;
}

/* 상단 영역 */
.equipment-detail-top {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* 왼쪽 섹션 */
.equipment-left-section {
    display: flex;
    flex-direction: column;
}

/* 메인 이미지 */
.equipment-main-image {
    width: 100%;
    height: 220px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.equipment-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s;
}

.equipment-main-image img:hover {
    transform: scale(1.02);
}

/* 이용가능 상태 배지 */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.availability-badge i {
    font-size: 18px;
}

.availability-badge.available {
    background: #e3f2fd;
    color: var(--color-main-blue);
}

.availability-badge.repairing {
    background: #fff3e0;
    color: #ef6c00;
}

.availability-badge.unavailable {
    background: #f5f5f5;
    color: #999;
}

/* 담당자 정보 박스 */
.manager-info-box {
    background: #f9f9f9;
    border-radius: 5px;
    padding: 15px;
    border: 1px solid #eee;
}

.manager-info-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.manager-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.manager-info-item:first-child {
    padding-top: 0;
}

.manager-info-item .label {
    width: 70px;
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.manager-info-item .value {
    flex: 1;
    font-size: 14px;
    color: var(--color-dark-black);
}

.manager-info-item .phone-link {
    color: var(--color-main-blue);
    cursor: pointer;
    transition: color 0.2s;
}

.manager-info-item .phone-link:hover {
    text-decoration: underline;
}

/* 오른쪽 섹션 */
.equipment-right-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 장비 타이틀 영역 */
.equipment-title-area {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-dark-black);
}

.equipment-title-area .equipment-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-main-blue);
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.equipment-title-area .equipment-name-en {
    font-size: 15px;
    color: var(--color-medium-gray);
    margin: 0;
}

/* 기본 정보 테이블 */
.equipment-info-table {
    flex: 1;
}

.equipment-info-table table {
    width: 100%;
    border-collapse: collapse;
}

.equipment-info-table th,
.equipment-info-table td {
    padding: 12px 15px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.equipment-info-table th {
    width: 120px;
    background: #f9f9f9;
    color: var(--color-dark-black);
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.equipment-info-table td {
    color: #555;
}

/* 이용금액 섹션 */
.equipment-usage-fee-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.usage-fee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.usage-fee-item {
    text-align: center;
}

.usage-fee-item .fee-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.usage-fee-item .fee-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark-black);
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    margin-left: 10px;
    font-size: 13px;
    color: var(--color-main-blue);
    border: 1px solid var(--color-main-blue);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    vertical-align: middle;
}

.location-btn:hover {
    background: var(--color-main-blue);
    color: #fff;
}

.location-btn i {
    font-size: 14px;
}

/* 신청하기/문의하기 버튼 */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px;
}

.action-buttons .btn {
    min-width: 150px;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
}

.action-buttons .btn-outline-primary {
    background: #fff;
    border: 2px solid var(--color-main-blue);
    color: var(--color-main-blue);
}

.action-buttons .btn-outline-primary:hover {
    background: var(--color-main-blue);
    color: #fff;
}

.action-buttons .btn-outline-primary:disabled {
    background: #f5f5f5;
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
}

.action-buttons .btn-primary {
    background: var(--color-main-blue);
    border: 2px solid var(--color-main-blue);
    color: #fff;
}

.action-buttons .btn-primary:hover {
    background: #153699;
    border-color: #153699;
}

/* 장비설명 섹션 */
.equipment-description-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.description-table {
    padding: 0;
}

.description-table table {
    width: 100%;
    border-collapse: collapse;
}

.description-table th,
.description-table td {
    padding: 15px 20px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.description-table th {
    width: 130px;
    background: #f9f9f9;
    color: var(--color-dark-black);
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.description-table td {
    color: #555;
    line-height: 1.7;
}

.description-table tr:last-child th,
.description-table tr:last-child td {
    border-bottom: none;
}

/* 파일 다운로드 링크 */
.file-download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    background: var(--color-pale-blue);
    color: var(--color-main-blue);
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.file-download-link:hover {
    background: var(--color-main-blue);
    color: #fff;
}

.file-download-link i {
    font-size: 16px;
}

/* 장비 상세 페이지 반응형 */
@media (max-width: 991px) {
    .equipment-detail-top {
        padding: 25px;
    }

    .equipment-left-section {
        margin-bottom: 30px;
    }

    .equipment-main-image {
        height: 280px;
    }

    .equipment-title-area .equipment-name {
        font-size: 22px;
    }

    .usage-fee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-info-table th {
        width: 100px;
    }
}

@media (max-width: 767px) {
    .equipment-detail-top {
        padding: 20px;
    }

    .equipment-main-image {
        height: 220px;
    }

    .equipment-title-area .equipment-name {
        font-size: 20px;
    }

    .equipment-title-area .equipment-name-en {
        font-size: 14px;
    }

    .equipment-info-table th,
    .equipment-info-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .equipment-info-table th {
        width: 90px;
    }

    .usage-fee-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .usage-fee-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
    }

    .usage-fee-item:last-child {
        border-bottom: none;
    }

    .usage-fee-item .fee-label {
        margin-bottom: 0;
    }

    .location-btn {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        padding: 20px;
    }

    .action-buttons .btn {
        width: 100%;
    }

    .description-table th,
    .description-table td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .description-table th {
        width: 100px;
    }

    .page-title-en {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

/* ============================================
   문의하기 모달 스타일
============================================ */

#inquiryModal .modal-header {
    background: linear-gradient(135deg, #1c45a5 0%, #6485d2 100%);
    color: #fff;
    border-bottom: none;
}

#inquiryModal .modal-title {
    font-weight: 600;
}

#inquiryModal .btn-close {
    filter: brightness(0) invert(1);
}

#inquiryModal .modal-body {
    padding: 25px;
}

#inquiryModal .form-label {
    font-weight: 500;
    color: var(--color-dark-black);
    margin-bottom: 5px;
}

#inquiryModal .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 15px;
}

#inquiryModal .form-control:focus {
    border-color: var(--color-main-blue);
    box-shadow: 0 0 0 3px rgba(28, 69, 165, 0.1);
}

#inquiryModal textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

#inquiryModal .modal-footer {
    border-top: 1px solid #eee;
    padding: 15px 25px;
}

#inquiryModal .modal-footer .btn {
    min-width: 100px;
    padding: 10px 25px;
}

.inquiry-equipment-info {
    display: flex;
    align-items: center;
    background: var(--color-pale-blue);
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.inquiry-equipment-info .label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
    flex-shrink: 0;
}

.inquiry-equipment-info .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-main-blue);
}

/* 모달 반응형 */
@media (max-width: 576px) {
    #inquiryModal .modal-dialog {
        margin: 10px;
    }

    #inquiryModal .modal-body {
        padding: 20px;
    }

    #inquiryModal .modal-footer {
        flex-direction: column;
        gap: 10px;
    }

    #inquiryModal .modal-footer .btn {
        width: 100%;
    }
}