@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Inter-upright-var.woff2') format('woff2');
}

@font-face {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Urbanist-VariableFont_wght.woff2') format('woff2');
}

:root {
    --primary-color: #162844;
    --bs-primary-rgb: 22, 40, 68;
    --secondary-color: #0056b3;
    --text-dark: #111;
    --text-gray: #444;
    --text-light: #666;
    --bg-light: #f4f7fa;
    --white: #ffffff;
    --border-color: #eee;
    --bs-info-rgb: 0, 118, 255;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body.modal-open {
    padding-right: 0 !important;
}

body {
    font-family: 'Inter', 'Pretendard', -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
    letter-spacing: -0.02em;
}

/* 전체 최소 폰트 16px — 아이콘(i, svg), 제목(h1~h6) 제외 */
*:not(i):not(svg):not(path):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    /* font-size: max(16px, 1em) !important; */
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Floating Quick Menu */
.quick-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .quick-menu {
        display: flex;
    }
    .quick-item {
        width: 54px;
        height: 54px;
    }
    .quick-label {
        display: none !important;
    }
    .quick-item.home:hover,
    .quick-item.tel:hover,
    .quick-item.katalk:hover,
    .quick-item.qna:hover {
        background: transparent !important;
        color: inherit;
    }
}

.quick-item {
    width: 114px;
    height: 114px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 1px solid #f0f0f0;
    gap: 10px;
}

.quick-item:last-child {
    border-bottom: none;
}

.quick-item:hover {
    color: #fff;
}

.quick-item.home:hover {
    background: #0b1622;
}

.quick-item.tel:hover {
    background: #e63e3e;
}

.quick-item.katalk:hover {
    background: #EFCE00;
}

.quick-item.qna:hover {
    background: #0A66FF;
}

/* Header */
header {
    height: 90px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary-color);
    margin-left: 5px;
}

/* Navigation */
.nav-menu {
    display: flex;
    height: 100%;
    padding-left: 220px;
}

.nav-item {
    position: relative;
    height: 100%;
}

.nav-link {
    padding: 0 28px;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    transition: 0.2s;
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--primary-color);
}

.arrow-icon {
    font-size: 9px;
    opacity: 0.5;
    transition: 0.3s;
}

.nav-item:hover .arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    padding: 15px 0;
    border: 1px solid #f0f0f0;
    border-radius: 0 0 10px 10px;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    transition: 0.2s;
}

.submenu li a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 30px;
}

/* Hero Section */
.hero-slider-section {
    height: 850px;
    position: relative;
}

.hero-carousel {
    position: absolute;
    inset: 0;
}

.hero {
    background: url('../images/main/main-img.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    height: 580px;
    /* background: url('../images/main/hero-content-bg.png') no-repeat left center; */
    background-size: contain;
    padding: 100px 0 40px 60px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-badges .badge {
    background-image: url('../images/main/check-icon.png');
}

.badge {
    padding: 6px 18px 6px 35px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 16px;
    color: #000;
}

.badge-inquiry {
    display: inline-block;
    color: #fff;
    font-size: 12px !important;
    font-weight: 500;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.idx-inq-card {
    display: block;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #fff;
}

.idx-inq-card:hover {
    background: #f0f6ff;
}

.idx-inq-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* inquiry 공통 카드 (inquiry.php + index.php 모바일) */
.inq-card {
    display: block;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #fff;
}

.inq-card:hover {
    background: #f0f6ff;
}

.inq-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
}

.inq-badge {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 12px !important;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.hero-content h2 {
    font-size: 86px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 1);
}

.hero-content p {

    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Section Common */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h3 {
    font-size: 18px;
    color: #0076FF;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
}

.section-header h2 span.text-bold {
    font-weight: 700;
}

/* Business Area Cards */
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.business-card {
    background: #fff;
    padding: 44px 32px;
    border-radius: 20px;
    transition: 0.4s;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
}

.business-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

.business-card:hover::before {
    opacity: 0.5;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: 0.4s;
}

.card-content {
    position: relative;
    z-index: 3;
}

.business-card h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.business-card p {
    font-size: 18px;
    text-align: justify;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.arrow-link {
    position: absolute;
    top: -30px;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff url('../images/main/arrow-up-right.png') no-repeat center;
    background-size: 24px;
    border-radius: 15px;
    transition: 0.3s;
}

.arrow-link:hover {
    background-color: #2777FC;
    background-image: url('../images/main/arrow-up-right-w.png');
    transform: rotate(45deg);
}

/* Product Detail Area (Refined from product01.jpg) */
.product-detail-area {
    background: #E6F3FF;
    padding: 120px 0;
}

.high-order-content {
    gap: 20px;
}

.high-order-section {}

.high-order-section.section-1 {}

.high-order-section.section-2 {}

.high-order-section.section-3 {
    width: 33vw;
}

.product-detail-area h2 {
    font-size: 48px;
    margin-bottom: 46px;
}

.product-main {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.product-main .product-info {
    flex: 1;
}

.product-badge {
    display: inline-block;
    padding: 6px 0;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.pd-badge1 {
    padding: 6px 20px;
    background-color: #fff;
    margin-bottom: 48px;
}

.product-main h2 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
}

.product-main p {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.btn-more-blue {
    display: inline-block;
    padding: 15px 45px;
    background: #2777FC;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

.btn-more-blue:hover {
    background: #1a5ccc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(39, 119, 252, 0.3);
}

.product-visual {
    flex: 1.2;
    position: relative;
}

.image-stack {
    position: relative;
    height: 450px;
}

.img-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.box1 {
    left: 140px;
    top: 86px;
    z-index: 2;
}

.box2 {
    right: 0;
    top: 0;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    z-index: 3;
}

.floating-icon img {}

.icon1 {
    top: 15px;
    left: 200px;
}

.icon2 {
    bottom: 110px;
    right: 180px;
}

/* Sub Grid */
.product-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sub-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.sub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.sub-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-icon img {
    width: 24px;
}

.sub-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.sub-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
}

/* Product 02 & 03 Styles */
.bg-white {
    background: #fff;
}

.bg-gradient {
    background: linear-gradient(135deg, #e0f2fe 0%, #e6f7ff 100%);
}

.product-main.reverse {
    flex-direction: row-reverse;
}

.product-subtitle {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 38px;
    color: #181818;
}

.product-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.grid-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.grid-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #181818;
}

.grid-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    position: absolute;
    bottom: 20px;
}

.product02-visual img,
.product03-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-list {
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list .num {
    font-size: 24px;
    font-weight: 800;
    color: #2777FC;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(39, 119, 252, 0.1);
    flex-shrink: 0;
}

.feature-list .text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.feature-list .text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.mt-40 {
    margin-top: 40px;
}

/* Product Common Texts */
.product-badge-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #2777FC;
    margin-bottom: 15px;
}

.product-title-text {
    font-size: 52px;
    font-weight: 800;
    color: #111;
}

/* Product 02: 하이오더 Section */
.product-hiorder-area {
    padding: 120px 0;
    background: #fff;
}

.hiorder-main-img img,
.hiorder-network-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hiorder-sub-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
}

.hiorder-circle-btn {
    width: 56px;
    height: 56px;
    background: #2777FC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hiorder-circle-btn:hover {
    transform: rotate(45deg);
    background: #1a5ccc;
}

.hiorder-circle-btn img {
    width: 24px;
}

.hiorder-desc {
    font-size: 17px;
    color: #777;
    line-height: 1.7;
}

.feature-small-card {
    background: #F8F9FA;
    padding: 25px 20px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
}

.feature-small-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.f-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-small-card h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
}

/* Product 03: 서빙로봇 Section */
.product-robot-area {
    padding: 120px 0;
    background: #f0f7ff;
    overflow: hidden;
}

.robot-visual {
    position: relative;
    padding: 40px;
}

.robot-circle-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.robot-main-img {
    position: relative;
    z-index: 2;
    max-height: 700px;
}

.robot-label {
    position: absolute;
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.robot-label::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 40px;
    background: #ddd;
    top: 100%;
    left: 50%;
}

.label1 {
    top: 20%;
    right: 10%;
}

.label2 {
    bottom: 20%;
    right: 5%;
}

.label3 {
    bottom: 10%;
    left: 40%;
}

.robot-feature-list {
    list-style: none;
    padding: 0;
}

.robot-feature-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.robot-feature-list .num {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: #fff;
    color: #2777FC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.robot-feature-list h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.robot-feature-list p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.high-order-bg1 {
    background-image: url('../images/main/high-order-bg1.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}

.high-order-bg2 {
    background-image: url('../images/main/high-order-bg2.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}

.high-order-bg3 {
    background-image: url('../images/main/high-order-bg3.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}

.high-order-bg4 {
    background-image: url('../images/main/high-order-bg4.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
}

.serving-robot {
    position: relative;
    background-image: url('../images/main/serving-robot-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.high-order {
    position: relative;
    background-color: #fff;
}

.btn-arrow-hover {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
}

.btn-arrow-hover:hover {
    transform: rotate(45deg);
}

/* New Inquiry Styles (Based on 공지사항.jpg) */
.custom-inquiry-table thead th {
    border-top: 2px solid #333;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 10px;
    text-wrap: nowrap;
}

.custom-inquiry-table tbody td {
    padding: 18px 10px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.custom-inquiry-table tbody tr:last-child td {
    border-bottom: 1px solid #333;
}

/* 자동스크롤 테이블 hover */
#inqScrollTable tbody tr.inq-row {
    cursor: pointer;
}

#inqScrollTable tbody tr.inq-row:hover td {
    background-color: #f5f5f5;
    color: inherit;
}

/* 모바일 카드 hover */
#inqMobileBody .inq-row {
    cursor: pointer;
}

#inqMobileBody .inq-row:hover {
    background: #f5f5f5;
}

/* 드래그 중 텍스트 선택 방지 */
#inqScrollWrap,
#inqMobileWrap {
    user-select: none;
}

.quick-apply-box {
    transition: 0.3s;
}

.quick-apply-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
}

.quick-form .form-control,
.quick-form .form-select {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: 0.3s;
}

.quick-form .form-control:focus,
.quick-form .form-select:focus {
    border-color: #2777FC;
    box-shadow: 0 0 0 4px rgba(39, 119, 252, 0.1);
}

.plus-btn-black {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: 0.3s;
}

.plus-btn-black:hover {
    background: #333;
    transform: rotate(90deg);
}

/* Inquiry Table Style */
.inquiry-section {
    background: #fff;
    padding: 60px 0;
    margin-bottom: 120px;
}


/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 80px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-content h2 {
        font-size: 60px;
    }

    .inquiry-section {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    header {
        height: 70px;
    }

    #mobileMenu {
        top: 70px !important;
    }

    .hero {
        height: 500px;
        text-align: center;
    }

    .hero-slider-section {
        height: 500px;
    }

    .hero-content h2 {
        font-size: 48px;
    }

    .image-stack {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }

    .box1 {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        left: 0;
    }

    .box2 {
        display: none;
    }

    .quick-menu {
        display: flex;
        box-shadow: unset;
        right: 5px;
        gap: .3em;
    }
    .quick-item {
        width: 54px;
        height: 54px;
        background: transparent;
        border: 0;
    }
    .quick-item.home {
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .quick-label {
        display: none !important;
    }
    
    #scrollTopBtn {
    	right: 5px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-slider-section {
        height: 420px;
    }

    .product-main h2 {
        font-size: 32px;
    }

    .card-icon {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        text-align: right;
    }

    .high-order-section.section-3 {
        width: 100%;
    }


}

/* Footer Styles (Based on footer.jpg) */
.footer-new {
    background-color: #0B1320;
    /* Dark navy */
    color: #94A3B8;
    height: auto !important;
    padding: 40px 0;
}

@media (min-width: 992px) {
    .footer-new {
        height: 194px !important;
        padding: 0;
    }
}

.footer-logo-new {
    letter-spacing: -1px;
}

.footer-logo-new .text-danger {
    color: #E60000 !important;
}

.sns-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.sns-icon:hover {}

.footer-new hr {}

.contact-info span i,
.address-info i {
    color: #fff;
}

/* Officenet / About Us Section Styles */
.about-us-section {
    background-color: #fff;
    padding: 100px 0;
}

.about-img-box {
    width: 100%;
    height: 500px;
    border-radius: 50px !important;
}

@media (max-width: 768px) {

    .display-6 {
        font-size: 24px !important;
    }

    .about-img-box {
        height: 300px;
    }

    .badge {
        font-size: 16px !important;
    }

    .badge-inquiry {
        font-size: 11px !important;
    }

    .footer-new {
        padding: 20px 0;
    }
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .display-4 {
    letter-spacing: -2px;
    color: #000;
}

.about-content .btn-primary {
    background-color: #2777FC;
    border: none;
    transition: 0.3s;
}

.about-content .btn-primary:hover {
    background-color: #1a5ccc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 119, 252, 0.3);
}

.about-content .bi-check2 {
    stroke-width: 2;
}

/* Pricing Table Styles (plan4.jpg) */
.pricing-custom-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dee2e6;
}

.pricing-custom-table th,
.pricing-custom-table td {
    padding: 1.2rem 0.75rem;
}

.pricing-custom-table .highlight-header {
    background-color: #f8f9fa;
    border-top: 2px dashed #dc3545 !important;
    border-left: 2px dashed #dc3545 !important;
    border-right: 2px dashed #dc3545 !important;
}

.pricing-custom-table .highlight-cell {
    border-left: 2px dashed #dc3545 !important;
    border-right: 2px dashed #dc3545 !important;
}

.pricing-custom-table tr:last-child .highlight-cell {
    border-bottom: 2px dashed #dc3545 !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Sub Banner */
.sub-banner-con {
    padding: 100px 0;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: rgb(0, 0, 0, .5);
}

.sub-banner-content-con h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}

.sub-banner-con .breadcrumb {
    background: transparent;
    padding: 0;
}

.sub-banner-con .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline;
}

.sub-banner-con .breadcrumb-item.active {
    color: #fff;
}

.sub-banner-con .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Category QuickNav - 배너 겹침 */
.sub-banner-con {
    padding-bottom: 70px !important;
}

.category-quicknav-wrap {
    position: relative;
    z-index: 10;
    margin-top: -55px;
    margin-bottom: 0;
}

.category-nav-row {
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
}

.category-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s, color 0.2s;
    background: transparent;
    letter-spacing: 0.02em;
}

.category-nav-item:last-child {
    border-right: 1px solid #162844;
    margin-right: -1px;
}

.category-nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #0d6efd;
}

.category-nav-item.active {
    background: #162844;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 576px) {
    .category-quicknav-wrap {
        margin-top: -40px;
    }

    .category-nav-item {
        font-size: 0.82rem;
        padding: 13px 6px;
    }
}

.table-bordered>:not(caption)>*>* {
    border-width: thin;
}

.table th,
.table td {
    white-space: normal;
}

@media (max-width: 991px) {}

@media (max-width: 767px) {

    .table th,
    .table td {
        white-space: nowrap;
    }

    .fl-td-desc {
        white-space: normal !important;
        min-width: 200px !important;
    }
}



.icon-circle-large,
.icon-box-rect {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.work-img-con::before {
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 636px;
    height: 636px;
    position: absolute;
    border-radius: 100%;
    background-color: var(--e-global-color-primary);
    z-index: 1;
}

@media (max-width: 767px) {
    .needs-fs {
        font-size: 1rem !important;
    }
}