@charset "utf-8";

/* ============================================
   ETERTECH ?? ??? ???
   Version: 2.0
   Updated: 2025-12-08
   Design Direction: Modern Minimalist with Dark Accents
============================================ */

:root {
    --primary-color: #FF009E;
    --primary-dark: #ca006f;
    --primary-light: #ff3ca7;
    --secondary-color: #0056b3;
    --secondary-dark: #003d82;
    --secondary-light: #e8f4fd;
    --accent-color: #00d4aa;
    --dark-bg: #1a1a2e;
    --dark-surface: #16213e;
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;
    --border-color: #e9ecef;
    --card-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.12);

    /* ?? */
    --font-primary: 'Pretendard', 'Noto Sans KR', sans-serif;
    --font-display: 'Montserrat', sans-serif;

    /* ?? */
    --section-padding: 7.5rem;
    --container-width: 1180px;
}

/* ============================================
   Site Header - Starry Style Transparent Navbar
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

/* Default: transparent with white text (for main page) */
.site-header .nav-link {
    color: #fff;
}

.site-header .nav-link:hover {
    /* color: rgba(255, 255, 255, 0.7); */
    /* background: rgba(255, 255, 255, 0.1); */
}

.site-header .btn_hamburger span {
    background: #fff;
}

/* Scrolled state: white background, dark text */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .nav-link {
    color: var(--text-primary);
}

.site-header.scrolled .nav-link:hover {
    color: var(--primary-color);
    /* background: var(--primary-light); */
}

.site-header.scrolled .btn_hamburger span {
    background: var(--text-primary);
}

/* Sub-page: default solid header */
/* .wrap:not(.main) .site-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
} */
/* .site-header .nav-link {
    color: #fff;
} */

/* .wrap:not(.main) .site-header .nav-link {
    color: var(--text-primary);
} */

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 3.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.625rem;
}

.site-header .logo a {
    display: flex;
    align-items: center;
}

.site-header .logo img,
.site-header .header-logo {
    height: 3.5rem;
    transition: all 0.3s;
}

/* PC Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    /* gap: 0.5rem; */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 0.625rem 1rem;
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

/* Underline animation on hover */
.nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.3125rem;
    height: 0.125rem;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Contact/CTA Button - Starry Purple Style */
.nav-link.btn-contact {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    margin-left: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 0.25rem 0.9375rem rgba(99, 102, 241, 0.4);
}

.nav-link.btn-contact::after {
    display: none;
}

.nav-link.btn-contact:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(99, 102, 241, 0.5);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12.5rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.12);
    padding: 0.625rem 0;
    list-style: none;
    margin: 0;
    z-index: 1001;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    /* background: var(--primary-light); */
    color: var(--primary-color);
}

/* Hamburger Button - Hidden on PC */
.btn_hamburger {
    display: none;
    width: 1.6875rem;
    height: 1.375rem;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.btn_hamburger span {
    display: block;
    width: 100%;
    height: 0.1875rem;
    background: var(--text-primary);
    border-radius: 0.125rem;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.btn_hamburger span:nth-child(1) {
    top: 0;
}

.btn_hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.btn_hamburger span:nth-child(3) {
    bottom: 0;
}

/* Mobile Full-screen Menu */
.mobile-gnb-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s;
}

/* GNB styles moved to common.css */

.mobile-nav {
    padding: 0;
}

.mobile-nav-group {
    margin: 0;
    border-bottom: 1px solid #333;
    padding: 0;
}

.mobile-nav-title {
    padding: 0.9375rem 1.25rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    margin: 0;
}

.mobile-nav-title:after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.75rem;
    color: #666;
    transition: transform 0.3s;
}

.mobile-nav-sub {
    background: #151515;
    padding: 0.625rem 0;
    margin: 0;
    /* display: none; */
    /* Initially visible for now, or use JS toggle */
}

.mobile-nav-sub li {
    margin: 0;
}

.mobile-nav-sub li a {
    padding: 0.75rem 1.25rem 0.75rem 2.1875rem;
    color: #999;
    font-size: 0.875rem;
    border-left: none;
    margin: 0;
    border-bottom: 1px solid #222;
}

.mobile-nav-sub li a:hover,
.mobile-nav-sub li a:focus {
    color: #fff;
    background: #000;
    border-left: none;
    padding-left: 2.1875rem;
}

.mobile-gnb-footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.social-links a {
    background: #333;
    color: #ccc;
    box-shadow: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Header Space for fixed header */
/* .wrap {
    padding-top: 5rem;
} */

.wrap.main {
    padding-top: 0;
}

.wrap.main .site-header {
    background: transparent;
}

.wrap.main .site-header.scrolled {
    background: #fff;
}

.wrap.main .main_visual {
    margin-top: -5rem;
    padding-top: 5rem;
}

/* Mobile Responsive */



/* ============================================
   ?? ????
============================================ */
.section-title {
    text-align: center;
    margin-bottom: 3.75rem;
}

.section-title h3 {
    font-size: 2.625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.9375rem;
    letter-spacing: -0.0312rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Development Process ?? - ???? ???
============================================ */
.sec_process {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.sec_process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2.5rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 10%;
    right: 10%;
    height: 0.1875rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 0;
}

.process-step {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-icon {
    width: 6.25rem;
    height: 6.25rem;
    margin: 0 auto 1.5625rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #fff;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 86, 179, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0.9375rem 2.8125rem rgba(0, 86, 179, 0.5);
}

.process-step .step-number {
    position: absolute;
    top: -0.9375rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--dark-bg);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}

.process-step h4 {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.9375rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ============================================
   ???/??? ?? - Slack ???
============================================ */
.sec_pricing {
    padding: var(--section-padding) 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.75rem;
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 1.875rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--hover-shadow);
}

.pricing-card.featured {
    border: 0.125rem solid var(--primary-color);
    background: linear-gradient(180deg, var(--primary-light) 0%, #fff 30%);
}

.pricing-card.featured::before {
    content: '??';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
}

.pricing-card .plan-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5625rem;
}

.pricing-card .plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.3125rem;
}

.pricing-card .plan-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-card .plan-features {
    list-style: none;
    padding: 1.5625rem 0;
    margin: 1.5625rem 0;
    border-top: 1px solid var(--border-color);
    /* border-bottom: 1px solid var(--border-color); */
    padding-bottom: 0;
    text-align: left;
}

.pricing-card .plan-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.pricing-card .plan-features li::before {
    content: '?';
    color: var(--accent-color);
    font-weight: bold;
}

.pricing-card .btn-select {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 0;
    background: var(--primary-color);
    color: #fff;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: none;
}

.pricing-card .btn-select:hover {
    background: var(--primary-dark);
    transform: translateY(-0.125rem);
}

/* ============================================
   ????? ?? - 100% ?? ???
============================================ */
.portfolio-section {
    padding: var(--section-padding) 0;
}

.portfolio-section .inner_content {
    max-width: 100%;
    padding: 0 3.75rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 1.25rem; */
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    /* aspect-ratio: 4/3; */
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5625rem;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item .overlay .category {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-item .overlay .title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Portfolio Grid - 100% Width Modern Design */
.pf-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 1.25rem;
    background: #f1f3f5;
    color: #495057;
    font-size: 1.25rem;
    font-weight: 500;
    transition: all 0.3s;
}

.pf-tab:hover,
.pf-tab.active {
    background: var(--primary-color);
    color: #fff;
}

#bo_gall {
    width: 100% !important;
    max-width: 100%;
    padding: 0;
}

#bo_gall #gall_ul {
    display: flex;
    flex-wrap: wrap;
    /* margin: 0 -0.625rem; */
}

/* #gall_ul.portfolio_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0;
    list-style: none;
} */

.pf_item {
    width: calc(25% - 2rem);
    position: relative;
    margin: 1rem;
    overflow: hidden;
    break-inside: avoid;
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf_item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

.pf_thumb {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #eeeef5, #c1c5cf);
}

.pf_thumb a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline;
    width: 100%;
}

.pf_thumb img {
    /* position: absolute; top:0; left:0;  */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf_item:hover .pf_thumb img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.pf_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* background: linear-gradient(180deg, transparent 30%, rgba(0, 86, 179, 0.9) 100%); */
    background: linear-gradient(180deg, rgb(25 81 143 / 60%) 24%, rgb(10 43 79 / 90%) 90%);
    opacity: 0;
    transition: all 0.4s ease;
    text-align: left;
    padding: 1.875rem;
    box-sizing: border-box;
}

.pf_item:hover .pf_overlay {
    opacity: 1;
}

.pf_txt {
    color: #fff;
    /* transform: translateY(1.25rem); */
    transition: transform 0.4s ease;
}

.pf_item:hover .pf_txt {
    transform: translateY(0);
}

.pf_cat {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.625rem;
    color: #9ae1d3;
    font-weight: 600;
    background: rgba(0, 212, 170, 0.25);
    padding: 0.25rem 0.625rem;
    border-radius: 0.75rem;
}

.pf_tit {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
    line-height: 1.4;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pf_more {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pf_more:hover {
    opacity: 1;
}

.pf_more i {
    transition: transform 0.3s;
}

.pf_more:hover i {
    transform: translateX(0.25rem);
}

.pf_chk {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
}

#bo_cate {
    margin-bottom: 1.875rem;
}

#bo_cate h2 {
    display: none;
}

#bo_cate_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
}

#bo_cate_ul li {
    list-style: none;
}

#bo_cate_ul li a {
    display: inline-block;
    padding: 1rem;
    width: max-content;
    border-radius: 1.875rem;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 1rem;
    letter-spacing: inherit;
    transition: all 0.3s;
}

#bo_cate_ul li a:hover,
#bo_cate_ul li a.active {
    background: #0056b3;
    color: #fff;
}



/* ============================================
   ???(????) ??
============================================ */
.sec_services {
    padding: var(--section-padding) 0;
    background: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.service-card {
    background: #fff;
    border-radius: 1rem;
    padding: 3.125rem 2.1875rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--hover-shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5625rem;
    background: var(--secondary-light);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary_light);
    transition: all 0.4s;
}

.service-card:hover .icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.service-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.9375rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Why Us ??
============================================ */
.sec_why {
    padding: var(--section-padding) 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-item {
    text-align: center;
    padding: 1.875rem;
}

.why-item .icon {
    width: 4.375rem;
    height: 4.375rem;
    margin: 0 auto 1.25rem;
    /* background: linear-gradient(135deg, var(--dark-bg), var(--dark-surface)); */
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.why-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
}

.why-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}


/* ============================================
   ??? ???
============================================ */






/* ============================================
   ?? ??? ?? (???, ?? ?)
============================================ */

/* Subpage Visual Overlay */
.visual {
    position: relative;
    background-size: cover;
    background-position: center;
}

.visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.visual .inbox {
    position: relative;
    z-index: 2;
}

/* Modal Styles */
.modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 37.5rem;
    max-width: 90%;
    height: 80%;
    overflow-y: auto;
    padding: 1.25rem;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
}

.modal_close {
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.modal_close:hover {
    color: var(--text-primary);
}


/* ============================================
   Modern Footer
============================================ */
.site-footer {
    background: var(--dark-bg);
    color: #fff;
}

.footer-main {
    padding: 5rem 0 3.125rem;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 3.75rem;
}

/* Footer Brand */
/* .footer-brand {} */

.footer-logo img {
    height: 2.8125rem;
    filter: brightness(0) invert(1);
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: #adb5bd;
    line-height: 1.8;
    margin-bottom: 1.5625rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    display: none;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-0.1875rem);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1.875rem;
    height: 0.125rem;
    background: var(--primary-color);
}

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

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col ul li a {
    color: #adb5bd;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 0.3125rem;
}

/* Footer Contact */
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-contact ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #adb5bd;
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-top: 0.1875rem;
}

.btn-footer-cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 1.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-footer-cta:hover {
    background: var(--accent-color);
    transform: translateY(-0.125rem);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem 0;
}

.footer-bottom .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: #6c757d;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.25rem;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Back to Top Button */
.btn_top {
    position: fixed;
    right: 1.875rem;
    bottom: 1.875rem;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 1.125rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 86, 179, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.btn_top.view {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn_top:hover {
    background: var(--primary-dark);
    transform: translateY(-0.3125rem);
}

/* Footer Responsive */


/* ============================================
   Page: Contact / Request Form
============================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.contact-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 2.1875rem 1.5625rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.1);
    border-color: #0056b3;
}

.card-icon {
    width: 4.375rem;
    height: 4.375rem;
    background: linear-gradient(135deg, #0056b3, #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.625rem;
    color: #fff;
}

.contact-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.625rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.card-link {
    display: inline-block;
    margin-top: 0.9375rem;
    font-size: 0.8125rem;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.125rem;
}

.contact-form-area,
.contact-map-area {
    background: #fff;
    border-radius: 1.25rem;
    /* padding: 2.5rem; */
    /* box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08); */
}

.contact-form-area h3,
.contact-map-area h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.625rem;
}

.form-desc {
    color: #6c757d;
    margin-bottom: 1.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    /* margin-bottom: 1.25rem; */
}

.form-group label {
    /* display: block; */
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

/* 
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1px solid #e9ecef;
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    transition: all 0.3s;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 0.1875rem rgba(0, 86, 179, 0.1);
}
*/

.form-group textarea {
    resize: vertical;
}

.form-agreement {
    margin-bottom: 1.25rem;
}

.form-agreement label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #6c757d;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0056b3, #003d82);
    color: #fff;
    border: none;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 86, 179, 0.3);
}

.map-container {
    height: 21.875rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5625rem;
}

#map_canvas {
    width: 100%;
    height: 100%;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.map-placeholder i {
    font-size: 3.125rem;
    margin-bottom: 0.9375rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.info-item i {
    width: 1.875rem;
    height: 1.875rem;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 0.75rem;
}








/* ============================================
   ???? ?? ???? ??@? ?I? ????P? (Unified Sub-page Layout)
   Updated: 2025-12-11
============================================ */

/* 1. Sub Visual Section */
.sub_visual {
    position: relative;
    height: 30rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

.sub_visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dim Overlay */
    z-index: 1;
}

.sub_visual .inbox {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sub_visual .copy {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
}

.sub_visual .p_tit {
    font-size: 3.375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.sub_visual .p_tx {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 50rem;
    margin: 0 auto;
    word-break: keep-all;
}

/* 2. Container & Content Layout */
.page_common_wrap .con {
    background: #fff;
    width: 100%;
    position: relative;
}

.page_common_wrap .inbox {
    max-width: var(--container-width);
    margin: 0 auto;
    /* padding: 0 4rem; */
    /* Padding is handled by inner_content */
}

/* 3. Sub Navigation (Tab) */
.sub_nav_wrap {
    top: calc(-6rem - 1px);
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}

.page_tab {
    /* display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 3.75rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 67.5rem; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background: #fff;
    /* border-radius: 3.5rem; */
    /* box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    width: 100%;
    max-width: 73.75rem;
    position: absolute;
    top: -3.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.page_tab li {
    flex: 1;
    /* text-align: center; */
    border-right: 1px solid #eee;
}

.page_tab li:last-child {
    border-right: none;
}

.page_tab li a {
    display: block;
    /* padding: 1.25rem 0;
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s;
    background: #fff; */
    color: initial;
    font-size: 1.75rem;
    line-height: 6rem;
    border-bottom: 1px solid #eee;
    display: block;
    transition: all 0.3s;
    background: #fff;
}

.page_tab li.on a,
.page_tab li a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* 4. Inner Content */
.inner_content section {
    padding: 3rem 2rem 3rem;
}

/* 5. Components Grid */
/* Stats Grid (About Company) */
.stats_grid {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    /*margin-top: 3.125rem;*/
    flex-wrap: wrap;
}

.stat_card {
    background: #f9f9f9;
    padding: 2.5rem 1.875rem;
    border-radius: 1rem;
    width: 15.625rem;
    text-align: center;
    transition: transform 0.3s;
}

.stat_card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: var(--card-shadow);
}

.stat_value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.625rem;
    font-family: var(--font-display);
}

.stat_label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Feature Grid (Service) */
.feature_grid {
    display: flex;
    gap: 1.875rem;
    /* margin-bottom: 5rem; */
    flex-wrap: wrap;
}

.feature_card {
    flex: 1;
    min-width: 17.5rem;
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #eee;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.3s;
}

.feature_card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.feature_card i {
    font-size: 3.125rem;
    color: var(--primary-color);
    margin-bottom: 1.5625rem;
    display: block;
}

.feature_card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
    color: var(--text-primary);
}

.feature_card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Refined Typography Helpers */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 1.875rem;
}

.mb-50 {
    margin-bottom: 3.125rem;
}

.mb-80 {
    margin-bottom: 5rem;
}

.section-headline {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.875rem;
    color: var(--primary-color);
    /* e94e1b or primary-color? User used e94e1b (orange) in about_company */
}

.section-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

/* Responsive */




/* 6. Process Step List (Light Version) */
.step_list {
    display: flex;
    justify-content: space-between;
    /* margin-top: 2.5rem; */
}

.step_item {
    text-align: center;
    position: relative;
    width: 22%;
}

.step_num {
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
    line-height: 3.125rem;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.step_item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
}

.step_item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* 7. CTA Button */
.btn_consult_action {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.9375rem 2.5rem;
    border-radius: 3.125rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1.25rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn_consult_action:hover {
    background: var(--primary-dark);
    text-decoration: none;
    transform: scale(1.05);
    color: #fff;
}

.svc_cta p {
    font-size: 1.125rem;
    /* color: var(--text-primary); */
    margin-bottom: 0.625rem;
}

/* Responsive Steps */


/* 8. Utility: Light Box Container */
.bg-light-box {
    background: #f9f9f9;
    padding: 3.75rem 2.5rem;
    border-radius: 1.25rem;
    margin-bottom: 5rem;
}

/* 9. Team Section */
.team_grid {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.team_member {
    width: 15.625rem;
    text-align: center;
}

.team_thumb {
    height: 15.625rem;
    background: #f1f3f5;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

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

.team_member:hover .team_thumb img {
    transform: scale(1.1);
}

.team_name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.3125rem;
    color: var(--text-primary);
}

.team_role {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* 10. Core Values Section */
.values_grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.value_item {
    width: 23%;
    text-align: center;
    padding: 1.25rem;
}

.value_icon {
    background: var(--primary-color);
    color: #fff;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    font-size: 1.875rem;
    transition: all 0.3s;
}

.value_item:hover .value_icon {
    transform: rotateY(180deg);
    background: var(--accent-color);
}

.value_title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
}

.value_desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Responsive Team/Values */




/* 11. History Timeline */
.history_timeline {
    border-left: 0.125rem solid #ddd;
    margin-left: 50%;
    padding-left: 1.875rem;
    position: relative;
    padding-bottom: 1.25rem;
}

.history_item {
    margin-bottom: 2.5rem;
    position: relative;
}

.history_item::before {
    content: '';
    position: absolute;
    left: -2.3125rem;
    /* Adjusted alignment */
    top: 0.3125rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #e94e1b;
    border-radius: 50%;
    border: 0.1875rem solid #fff;
    box-shadow: 0 0 0 1px #ddd;
}

.history_year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e94e1b;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.history_desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}



/* ============================================
   Updated Responsive Styles (Auto-Generated)
============================================ */

/* 1. Main Visual Responsive */
.main_visual {
    position: relative;
    height: 56.25rem;
    background: url('../images/main/visual_main.jpg') no-repeat center center;
    background-size: cover;
}

.main_visual .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.main_visual .txt_area {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding: 0 1.25rem;
}

.main_tit {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.875rem;
}

.main_tit span {
    font-size: 2.5rem;
    font-weight: 300;
    display: block;
    margin-top: 0.625rem;
}

.main_features {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 3.125rem;
    font-size: 1.125rem;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
}

.btn_main_action {
    display: inline-block;
    padding: 0.9375rem 2.5rem;
    border: 0.125rem solid #fff;
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn_main_action:hover {
    background: #fff;
    color: var(--primary-color, #0056b3);
}

/* 2. Intro / About */
.sec_about {
    padding: 6.25rem 0;
    text-align: center;
}

.intro_tit {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.875rem;
    color: var(--primary-color);
}

.intro_desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    max-width: 56.25rem;
    margin: 0 auto 3.125rem;
    padding: 0 1.25rem;
}

.btn_more {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    width: max-content;
    height: 4rem;
    line-height: 4rem;
    margin: 0;
    padding: 0 2rem;
}

/* 3. Why Grid */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 2.5rem;
    margin-top: 2.5rem;
}

.why-item {
    width: 30%;
    text-align: center;
}

.why-item .icon {
    font-size: 3.125rem;
    color: #333;
    margin-bottom: 0.9375rem;
    display: block;
}

.why-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.625rem;
    color: #333;
}

.why-item p {
    color: #666;
    font-size: 1rem;
}

/* 4. Process Timeline Horizontal */


/* 5. Pricing Tabs (Mobile) */
.mobile-only {
    display: none;
}



/* 6. FAQ Icons */


/* General Responsive Adjustments */




/* ============================================
   Response Fixes (New) - Overrides for Mobile
   ============================================ */
/* ============================================
   Response Fixes (New) - Overrides for Mobile
   ============================================ */




.faq-answer p {
    line-height: 1.35;
}

/* 0.9375rem 1.25rem 0.9375rem */


/* ============================================
   Utility Classes (Added for Inline Style Removal)
   ============================================ */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-flex {
    display: flex !important;
}

.justify-center {
    justify-content: center !important;
}

.align-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-10 {
    gap: 0.625rem !important;
}

.text-white {
    color: #fff !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-gray {
    color: #777 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-bold {
    font-weight: bold !important;
}

.fs-40 {
    font-size: 2.5rem !important;
}

/* 2.5rem */
.fs-20 {
    font-size: 1.25rem !important;
}

/* 1.25rem */

.mt-30 {
    margin-top: 1.875rem !important;
}

/* 1.875rem */
.mt-50 {
    margin-top: 3.125rem !important;
}

/* 3.125rem */
.mb-15 {
    margin-bottom: 1rem;
}

/* 0.9375rem */
.mb-40 {
    margin-bottom: 2.5rem !important;
}

/* 2.5rem */
.mb-60 {
    margin-bottom: 3.75rem !important;
}

/* 3.75rem */

.py-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
}

/* 3.125rem */

/* 29. Index Page Styles */
.svc_item:hover {
    transform: translateY(-0.625rem);
}

/* FAQ Accordion Styles */
.sec_faq {
    padding: 7.5rem 0;
    background: #fff;
}

.faq-container {
    /* max-width: 56.25rem; */
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: #0056b3;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.875rem;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.active .faq-icon {
    background: #00d4aa;
    transform: rotate(45deg);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 18.75rem;
    padding: 1rem 1.875rem 1.5rem 5.375rem;
}

/* .faq-answer p { color: #6c757d; line-height: 1.8; margin: 0; } */
/* Removed explicit p style to avoid conflict */
.faq-more,
.blog-more {
    text-align: center;
    margin-top: 3.125rem;
}

.faq-more a,
.blog-more a {
    color: #0056b3;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Slider Styles */
.sec_blog {
    padding: 7.5rem 0;
}

.blog-slider-wrap {
    position: relative;
}

.blog-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1.5rem 0;
}

.blog-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: #f7f7f7;
    border-radius: 1rem;
    overflow: hidden;
    /* box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08); */
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-0.5rem);
    /* box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.12); */
}

.blog-card a {
    text-decoration: none;
}

.blog-thumb {
    height: 12.5rem;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.8125rem;
    color: #0056b3;
    font-weight: 500;
}

.blog-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0.625rem 0 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.blog-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.blog-slider-nav button {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.15);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s;
}

.blog-slider-nav button:hover {
    background: #0056b3;
    color: #fff;
}

.slider-prev {
    margin-left: -1.5625rem;
}

.slider-next {
    margin-right: -1.5625rem;
}





/* ============================================
   Service/Business Page Styles
   Added: 2025-12-19
============================================ */

/* Intro Section */
.svc_intro {
    /* max-width: 50rem;
    margin: 0 auto 5rem; */
    text-align: center;
}

.section-headline {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.0312rem;
    text-align: center;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Feature Grid */
.svc_features {
    /* margin-bottom: 5rem; */
}
section.svc_features h3 {
    color: #fff;
}
.svc_process,
section.svc_process {
    padding: 5rem;
    background: #f9f9f9;
    border-radius: 1.25rem;
}

.feature_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
}

.feature_card {
    background: #fff;
    padding: 2.5rem 1.875rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.feature_card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.feature_card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5625rem;
    display: inline-block;
}

.feature_card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.9375rem;
}

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

/* Process Steps */
.step_list {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 1.25rem;
}

.step_list::before {
    /* content: ''; */
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 0.125rem;
    background: #dedede;
    z-index: 0;
}

.step_item {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 1.25rem;
    width: 25%;
    text-align: center;
    border-radius: 1.25rem;
}

.step_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    background: var(--dark-bg);
    color: #fff;
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    position: relative;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}

.step_item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
}

.step_item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Service Packages (align with pricing-grid) */
.svc_packages {
    background: transparent;
    padding: 0;
	display:none;
}

/* Call to Action */
.svc_cta {
    background: var(--dark-bg);
    padding: 3.75rem;
    border-radius: 1.25rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.svc_cta p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.875rem;
}

.btn_consult_action {
    display: inline-block;
    padding: 0.9375rem 2.5rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 3.125rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0.625rem 1.5625rem rgba(233, 78, 27, 0.4);
}

.btn_consult_action:hover {
    background: var(--primary-dark);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(233, 78, 27, 0.5);
}

/* Mobile Responsive for Services */




/* ============================================
   Portfolio View Page Styles
============================================ */
#pf_view_wrap {
    max-width: 75rem;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.pf_hero {
    width: 100%;
    margin-bottom: 3.75rem;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.1);
}

.pf_hero img {
    width: 100%;
    height: auto;
    display: block;
}

.pf_header {
    text-align: center;
    margin-bottom: 3.125rem;
}

.pf_view_cat {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.9375rem;
    background: rgba(233, 78, 27, 0.1);
    padding: 0.3125rem 0.9375rem;
    border-radius: 1.875rem;
}

.pf_view_tit {
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0;
}

.pf_info_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #eee;
    margin-bottom: 3.75rem;
}

.info_item {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    border-right: 1px solid #eee;
    padding-right: 1.25rem;
}

.info_item:last-child {
    border-right: none;
    padding-right: 0;
}

.info_item .lbl {
    font-size: 0.875rem;
    color: #888;
    font-weight: 500;
}

.info_item .val {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info_item .val .btn_visit {
    display: inline-block;
    padding: 0.3125rem 0.9375rem;
    background: var(--text-primary);
    color: #fff;
    border-radius: 1.875rem;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.3s;
}

.info_item .val .btn_visit:hover {
    background: var(--primary-color);
}

#bo_v_atc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 5rem;
}

#bo_v_atc img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.875rem 0;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.05);
}

.pf_actions {
    text-align: center;
    margin-top: 3.75rem;
    padding-top: 3.75rem;
    border-top: 1px solid #eee;
}

.btn_action.like {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9375rem 2.5rem;
    border: 0.125rem solid #ddd;
    border-radius: 3.125rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #555;
    transition: all 0.3s;
    background: #fff;
}

.btn_action.like:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff5f2;
}

.btn_action.like strong {
    color: var(--primary-color);
}

/* Mobile Responsive */





/* ============================================
   Mobile UI Improvements (Sub-Nav & Portfolio)
============================================ */

/* 1. Scrollable Mobile Sub-Nav */


/* 2. Mobile Portfolio Grid (2 Columns) */


.bo_fx {
    margin: 2rem 0 1rem;
}

/* ============================================
   Responsive / Media Queries (Refactored)
============================================ */

@media (max-width: 1200px) {
    #gall_ul.portfolio_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .btn_hamburger {
        display: block;
    }

    .header-inner {
        padding: 0 1.25rem;
        height: 4.375rem;
    }

    /* .wrap {
        padding-top: 4.375rem;
    } */

    .wrap.main .main_visual {
        margin-top: -4.375rem;
        padding-top: 4.375rem;
    }

    #gall_ul.portfolio_grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .service-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    .process-step {
        width: 45%;
    }

    .process-timeline::before {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .sub_visual {
        height: 25rem;
    }

    .sub_visual .inbox {
        width: 86%;
        padding: 2rem 1.25rem 0;
    }

    .sub_visual .p_tit {
        font-size: 2.625rem;
    }

    .sub_visual .p_tx {
        font-size: 1.125rem;
    }

    .stats_grid {
        gap: 1.25rem;
    }

    .stat_card {
        width: calc(50% - 1.25rem);
    }

    .feature_grid {
        flex-direction: column;
    }

    .page_tab {
        margin: 0 1.25rem;
        border-radius: 0.75rem;
        flex-wrap: wrap;
    }

    .page_tab li {
        width: 33.33%;
        /* border-bottom: 1px solid #f1f3f5; */
    }

    .page_tab li:nth-child(3n) {
        border-right: none;
    }

    .values_grid {
        justify-content: center;
    }

    .value_item {
        width: 45%;
        margin-bottom: 1.875rem;
    }

    .main_visual {
        height: 37.5rem;
    }

    .main_tit {
        font-size: 2.625rem;
    }

    .main_tit span {
        font-size: 1.75rem;
    }

    .intro_tit {
        font-size: 2rem;
    }

    .why-item {
        width: 48%;
    }

    /* 2 columns for Why section */
    .service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }


    /* 1. Header Fixes */
    .site-header .logo img,
    .site-header .header-logo {
        height: 2.35rem;
        /* 1.75rem */
    }

    .btn_hamburger {
        transform: scale(0.9);
        transform-origin: right center;
    }

    /* 2. Home Section Padding */
    .inner_content {
        padding: 5rem 1.25rem;
        /* 3.75rem 1.25rem */
    }

    .sec_about,
    .sec_services,
    .sec_portfolio,
    .sec_why,
    .sec_pricing,
    .sec_process,
    .sec_faq,
    .sec_blog {
        padding: 0;
        /* 3.75rem 0 */
    }

    .section-title {
        margin-bottom: 1rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    /* 3. Main Visual */
    .sub_txt {
        font-size: 0.875rem;
        /* 0.875rem */
        margin-bottom: 0.625rem;
        /* 0.625rem */
    }

    .main_features ul {
        justify-content: center;
    }

    /* 4. Services - 2 Column Grid */
    .service-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        /* 0.9375rem -> approx 0.9375rem or 1rem */
    }

    .service-card {
        padding: 1.25rem 1rem;
        /* 1.25rem 0.9375rem */
        min-height: auto !important;
    }

    .service-card .icon {
        width: 6rem;
        height: 6rem;
        font-size: 3rem;
        line-height: inherit;
        margin-bottom: 1.5rem;
        border-radius: 50%;
    }

    .service-card h4 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    /* 1rem, 0.625rem */
    .service-card p {
        font-size: 1rem;
        line-height: 1.4;
        word-break: keep-all;
    }

    /* 0.8125rem */

    /* 5. Portfolio Alignment */
    .portfolio-tabs {
        justify-content: center !important;
        margin-top: 1.25rem !important;
        /* 1.25rem */
    }

    .pf-tab {
        flex: 0 0 auto !important;
        /* Let them size naturally */
        padding: 0.375rem 0.75rem !important;
        /* 0.375rem 0.75rem */
        /* font-size: 0.8125rem !important; */
        /* 0.8125rem */
        width: auto !important;
    }

    /* 6. Why Etertech - Grid & Icons */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9375rem;
        /* 0.9375rem */
        margin-top: 1.875rem;
        /* 1.875rem */
    }

    .why-item {
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 1.25rem 0.9375rem;
        /* 1.25rem 0.9375rem */
        background: #f8f9fa;
        border-radius: 0.75rem;
        /* 0.75rem */
        text-align: center;
    }

    .why-item .icon {
        height: auto;
        font-size: 4rem;
        color: currentcolor;
        margin-bottom: 0.625rem;
        display: block;
        /* 2rem, 0.625rem */
    }

    .why-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3125rem;
    }

    /* 1rem, 0.3125rem */
    .why-item p {
        font-size: 0.8125rem;
        line-height: 1.4;
        word-break: keep-all;
    }

    /* 0.8125rem */

    /* 7. Development Process - Horizontal Layout */
    .process-timeline {
        display: flex;
        flex-direction: column;
        padding: 0 1.25rem;
        /* 1.25rem */
    }

    .process-timeline::before {
        display: none;
    }

    /* Hide line */
    .process-step {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0.9375rem;
        /* 0.9375rem */
        background: rgba(255, 255, 255, 0.08);
        /* Transparent Light */
        border-radius: 0.75rem;
        /* 0.75rem */
        margin-bottom: 0.9375rem;
        /* 0.9375rem */
    }

    .process-step .step-icon {
        width: 3.125rem;
        height: 3.125rem;
        font-size: 1.75rem;
        margin: 0 0.5rem 0 0;
        flex-shrink: 0;
        transform: none;
        box-shadow: none;
    }

    .process-step .step-number {
        display: none;
    }

    .process-step h4 {
        margin: 0;
        font-size: 1.25rem;
        text-align: left;
        width: 30%;
    }

    .process-step p {
        margin: 0 0 0 1rem;
        font-size: 1.125rem;
        line-height: 1.8;
        text-align: left;
        width: 47%;
    }

    /* 8. Pricing/Packages */
    .pricing-tabs {
        display: flex !important;
        overflow-x: auto;
        gap: 0.625rem;
        /* 0.625rem */
        padding-bottom: 0.9375rem;
        /* 0.9375rem */
        margin-bottom: 1.25rem;
        /* 1.25rem */
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-tab {
        flex: 0 0 auto;
        padding: 0.5rem 1rem;
        /* 0.5rem 1rem */
        border: 1px solid #ddd;
        border-radius: 1.25rem;
        /* 1.25rem */
        background: #fff;
    }

    .pricing-tab.active {
        background: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
    }

    .pricing-card {
        padding: 1.875rem 1.25rem;
        /* 1.875rem 1.25rem */
    }

    /* 9. FAQ Mobile */
    .faq-icon {
        display: none !important;
    }

    .faq-question {
        padding: 0.9375rem !important;
        display: block;
    }

    /* 0.9375rem */
    .faq-question h4 {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    /* 0.9375rem */
    .faq-item.active .faq-answer {
        padding: 1rem;
    }

    /* 0.9375rem 1.25rem 0.9375rem */

    /* 10. Contact Cards Mobile */
    .contact-card {
        flex: 1 1 calc(50% - 1.25rem);
        /* Tablet 2 cols */
    }

    /* Request Form Mobile */
    .contact-form-area .form-row {
        display: block !important;
    }

    .contact-form-area .form-group {
        /* width: 100% !important; */
        /* margin-bottom: 0.9375rem !important; */
    }

    /* 27. Board Responsive (New) */
    #bo_list .tbl_wrap,
    .tbl_wrap {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1.25rem;
        border: 1px solid #eee;
        display: block !important;
    }

    #bo_list .tbl_head01,
    .tbl_head01 {
        min-width: 43.75rem !important;
    }

    #bo_cate_ul li a {
        padding: 0.5rem;
    }




    /* Hide less important columns on mobile if preferred, or keep scroll */
    /* .tbl_head01 .td_date, .tbl_head01 .td_num { display: none; } */

    /* Board View Image Fix */
    #bo_v_con img,
    #bo_v_atc img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Sub-page Stacking */
    .about_section .row {
        flex-direction: column;
    }

    .history_timeline {
        padding: 0 0.625rem;
    }

    .history_timeline .item {
        width: 100%;
        margin-left: 0;
        padding-left: 1.25rem;
        border-left: 0.125rem solid #ddd;
        margin-bottom: 1.875rem;
    }

    /* About Page Grids */
    .stats_grid,
    .team_grid,
    .values_grid,
    .feature_grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Ensure flex containers wrap if used */
    .stats_grid,
    .values_grid {
        flex-wrap: wrap;
    }

    /* Portfolio Board List Mobile */
    /* Portfolio Board List Mobile (Horizontal Slide) */
    .portfolio_grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 1rem !important;
        padding-bottom: 1.25rem;
        /* Scrollbar space */
        -webkit-overflow-scrolling: touch;
    }

    .pf_item {
        /* width: 100% !important; */
        /* flex: 0 0 85% !important; */
        /* Show partial next card */
        width: calc(33% - 1rem);
        scroll-snap-align: center;
        margin: 0;
    }

    .pf_overlay {
        padding: 1.5rem;
    }

    .pf_txt {
        /* transform: translateY(1.25rem); */
    }

    .pf_cat {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-weight: 500;
        padding: 0.45rem .65rem;
        border-radius: .5rem;
    }

    .pf_tit {
        font-size: 1.425rem;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }

    .blog-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .feature_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step_list {
        flex-direction: column;
        gap: 1.875rem;
        padding: 0 1.5rem;
    }

    .step_list::before {
        display: none;
    }

    .step_item {
        width: 100%;
        padding: 0;
    }

    .pf_view_tit {
        font-size: 2.25rem;
    }

    .pf_info_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .info_item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }

    .info_item:nth-last-child(-n+2) {
        border-bottom: none;
        /* padding-bottom: 0; */
    }

}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom .footer-inner {
        gap: .25rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .btn_more {
        font-size: 1.25rem;
        height: 3rem;
        line-height: 3rem;
    }

    .section-title h3 {
        font-size: 2rem;
    }

    .section-headline {
        font-size: 1.75rem;
        color: var(--text-primary);
        line-height: 1.3;
    }

    .service-card .icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.75rem;
    }

    .service-card h4 {
        font-size: 1.25rem;
    }

    /* 1rem, 0.625rem */
    .service-card p {
        font-size: 1rem;
    }
    .inner_content section {
        padding: 2rem 1rem  4rem;
    }
    .inner_content section.svc_features {
		background: transparent;
    }
	.inner_content section.svc_features h3{
		color:inherit;
	}
    .why-item h4 {
        font-size: 1.2rem;
    }

    .why-item p {
        font-size: 1rem;
    }

    .pricing-grid,
    .service-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        width: 100%;
    }

    .inner_content {
        /*padding: 2.5rem 1.25rem;*/
    }

    .step_list {
        flex-direction: column;
        gap: 1.875rem;
    }

    .step_item {
        width: 100%;
    }

    .history_timeline {
        margin-left: 1.25rem;
        padding-left: 1.5625rem;
    }

    .history_item::before {
        left: -2rem;
    }

    .process-timeline {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .process-step {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step .step-icon {
        margin: 0;
        width: 3rem;
        height: 3rem;
        background: transparent;
    }

    .process-step h4 {
        margin-top: 0;
        font-size: 1.25rem;
        width: 50%;
    }

    .process-step p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        width: 100%;
    }

    .step-number {
        position: static !important;
        display: none;
        /* Hide number if icon is clear, or move it */
    }

    /* Or keep number */

    .mobile-only {
        display: flex;
    }

    .pricing-tabs {
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1.5625rem;
        flex-wrap: wrap;
    }

    .pricing-tab {
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        background: #f8f9fa;
        border-radius: 1.25rem;
        font-size: 0.875rem;
        cursor: pointer;
    }

    .pricing-tab.active {
        background: var(--primary-color, #0056b3);
        color: #fff;
        border-color: var(--primary-color, #0056b3);
    }

    .pricing-grid {
        display: block;
    }

    /* Controlled by JS to show single item */
    /* By default JS shows first item, others hidden manually by JS logic on load */

    .feature_grid {
        grid-template-columns: 1fr;
    }

    .svc_cta {
        padding: 2.5rem 1.25rem;
    }

    .svc_cta p {
        font-size: 1.25rem;
    }

    .page_tab {
        /* display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 0.625rem !important;
        padding-bottom: 0.625rem !important; */
        /* Hide Scrollbar */
        /* scrollbar-width: none; */
        /* Firefox */
        /* -ms-overflow-style: none; */
        /* IE 10+ */
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        margin: 0;
        padding: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        border-radius: inherit;
        transform: none;
        border-bottom: 0 solid #ededed;
    }

    .page_tab::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .page_tab li {
        /* width: auto !important; */
        flex: 0 0 auto !important;
    }

    .page_tab li a {
        padding: 0;
        font-size: 1.6rem;
        white-space: nowrap !important;
        line-height: 5rem;
        height: 5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* gap: 1rem; */
    }

    /* 3. Portfolio Thumbnail Aspect Ratio Repair */
    .portfolio-item {
        /* Ensure consistent height/ratio */
        /* aspect-ratio: 4/3 !important; */
        /* height: auto !important; */
    }

    .pf_item {
        width: calc(50% - 1rem);
        margin: .5rem;
    }

    .pf_thumb {
        /* width: 100%; */
        /* height: 100%; */
        /* padding-bottom: 0 !important; */
        /* Reset padding hack if using aspect-ratio */
    }

    .pf_thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        /* Prevent stretching */
    }

    #bo_sch form {
        display: flex;
        justify-content: center;
    }

    #bo_sch form #stx {
        width: 100%;
        /* margin: 0 0.5rem; */
    }

    .blog_content,
    .blog_sidebar {
        width: 100%;
        padding: 0;
    }

    .blog_content {
        width: 100%;
    }

    .blog_sidebar {
        display: none;
    }

    .blog_wrap .blog_content #bo_cate {
        display: block;
    }

    .blog_wrap .blog_content #bo_sch {
        display: block;
    }

}

@media (max-width: 576px) {
    #gall_ul.portfolio_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-area,
    .contact-map-area {
        /* padding: 1.5625rem; */
    }

    .gnb {
        width: 100%;
        /* max-width: 18.75rem; */
    }

    .sub_visual {
        height: 20rem;
    }

    .sub_visual .p_tit {
        font-size: 1.75rem;
    }

    .sub_visual .p_tx {
        font-size: 0.9rem;
    }

    .stat_card {
        width: 100%;
    }

    .page_tab li {
        width: 50%;
    }

    .page_tab li:nth-child(2n) {
        border-right: none;
    }

    .page_tab li:nth-child(3n) {
        border-right: 1px solid #f1f3f5;
    }

    .team_member {
        width: 100%;
        max-width: 18.75rem;
    }

    .value_item {
        width: 100%;
    }

    .faq-icon {
        display: none !important;
    }

    .faq-question {
        padding: 0.9375rem;
    }

    .main_visual {
        height: 100vh;
    }

    .wrap.main .main_visual {
        margin: 0;
        padding: 0;
    }

    .main_tit span {
        font-size: 1rem;
    }

    .sub_txt {
        /* font-size: 0.875rem; */
    }

    .main_features {
        gap: 1.5rem 0;
        font-size: 0.875rem;
    }

    .main_features li {
        width: 50%;
        /* flex: 1; */
    }

    /* .main_features li { width: 45%; } */

    .sec_about {
        padding: 3.75rem 0;
    }

    .intro_tit {
        /* font-size: 1.625rem; */
    }

    .intro_desc {
        font-size: 0.9375rem;
        padding: 0 0.625rem;
    }

    .why-item {
        width: 100%;
        margin-bottom: 1.875rem;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
    }

    /* Services 1 col on small mobile */

    .portfolio-tabs {
        flex-wrap: wrap;
        gap: 0.3125rem;
    }

    .pf-tab {
        flex: 1 1 40%;
        /* font-size: 0.875rem; */
        padding: 0.5rem 0;
    }

    .contact-card {
        flex: 1 1 100%;
        /* Mobile 1 col */
    }

    .blog-card {
        flex: 0 0 100%;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h4 {
        font-size: 1.15rem;
    }

    .pf_info_grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .info_item {
        border-bottom: 1px solid #eee !important;
        /* padding-bottom: 1.25rem !important; */
    }

    .info_item:first-child {
        padding-top: 0 !important;
    }

    .info_item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

}

/* ============================================
   Package List Skin Styles (Refactored)
============================================ */
.pkg_list {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.pkg_box {
    padding: 2.5rem 1.875rem;
    width: 30%;
    min-width: 18.75rem;
    text-align: center;
    position: relative;
    border-radius: 0.625rem;
    transition: all 0.3s;
    background: #fff;
    border: 1px solid #eee;
}

.pkg_box.highlight {
    background: #f9f9f9;
    border: 1px solid #0056b3;
    transform: scale(1.05);
    z-index: 1;
}

.pkg_badge {
    background: #e94e1b;
    color: #fff;
    display: inline-block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    margin-bottom: 0.9375rem;
    font-weight: bold;
}

.pkg_title {
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    color: #333;
}

.pkg_price {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: #0056b3;
    font-weight: 700;
}

.pkg_desc {
    color: #777;
    font-size: 0.875rem;
    margin-bottom: 1.875rem;
}

.pkg_divider {
    height: 1px;
    background: #ddd;
    margin-bottom: 1.875rem;
}

.pkg_features {
    text-align: left;
    font-size: 0.875rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1.875rem;
}

@media (max-width: 992px) {
    .pkg_box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .pkg_box {
        width: 100%;
        min-width: auto;
    }
}


/* ============================================
   Request Write Skin Styles (Refactored)
============================================ */
.form-group .request_textarea {
    height: 12.5rem;
}

.privacy_link {
    text-decoration: underline;
    color: #0056b3;
}

.privacy_modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.privacy_modal_content {
    background: #fff;
    padding: 1.875rem;
    border-radius: 0.9375rem;
    width: 90%;
    max-width: 31.25rem;
    position: relative;
}

.privacy_modal_title {
    margin-bottom: 0.9375rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.privacy_modal_body {
    height: 12.5rem;
    overflow-y: auto;
    font-size: 0.8125rem;
    color: #555;
    line-height: 1.6;
    border: 1px solid #eee;
    padding: 0.625rem;
    margin-bottom: 1.25rem;
}

.privacy_modal_close {
    width: 100%;
    padding: 0.75rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 0.3125rem;
    cursor: pointer;
}

/* ============================================
   Latest Portfolio Skin Styles (Refactored)
============================================ */
.lt_empty_wrap {
    width: 100%;
    text-align: center;
    padding: 3.125rem 0;
    color: #999;
}

.lt_empty_icon {
    font-size: 2.5rem;
    margin-bottom: 0.9375rem;
    display: block;
}


/* ============================================
   Benchmarked Sub Navigation (Knowhow Style)
============================================ */
.lnb-wrap {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    position: relative;
    z-index: 100;
}

.lnb-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.lnb-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-right: 1px solid #e5e5e5;
    font-size: 1.25rem;
    /* 20px */
    color: #333;
}

.lnb-depth {
    position: relative;
    width: 25%;
    height: 60px;
    border-right: 1px solid #e5e5e5;
}

.lnb-toggle {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    text-align: left;
    background: #fff;
    border: none;
    font-size: 1rem;
    /* 16px */
    color: #333;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    outline: none;
}

.lnb-toggle::after {
    content: '\f107';
    /* fa-angle-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.lnb-depth.open .lnb-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.lnb-list {
    display: none;
    position: absolute;
    top: 60px;
    left: -1px;
    /* Align with border */
    width: calc(100% + 2px);
    /* Cover borders */
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 101;
}

.lnb-depth.open .lnb-list {
    display: block;
}

.lnb-list li a {
    display: block;
    padding: 15px 20px;
    font-size: 0.9375rem;
    /* 15px */
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.lnb-list li:last-child a {
    border-bottom: none;
}

.lnb-list li a:hover,
.lnb-list li.active a {
    background: #f9f9f9;
    color: var(--primary-color);
    font-weight: 600;
}

.lnb-share {
    margin-left: auto;
    padding-right: 20px;
}

.lnb-share-btn {
    background: none;
    border: none;
    font-size: 1.125rem;
    /* 18px */
    color: #555;
    cursor: pointer;
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .lnb-inner {
        border-right: none;
    }

    .lnb-depth {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 768px) {
    .lnb-inner {
        flex-wrap: wrap;
    }

    .lnb-home-btn {
        width: 50px;
        height: 50px;
    }

    .lnb-depth {
        height: 50px;
        /* border-bottom: 1px solid #e5e5e5; */
    }

    .lnb-list {
        top: 50px;
    }

    .lnb-share {
        display: none;
    }

    /* Make depths stack on very small screens? No, keep side by side if possible */
}


/* ============================================
   Benchmarked FAQ Styles (Knowhow Style)
============================================ */
.faq_sch {
    margin-bottom: 50px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.faq_sch_inner {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
}

.faq_sch_inner input {
    flex: 1;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
}

.faq_sch_inner .btn_submit {
    width: 60px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    font-size: 20px;
    cursor: pointer;
}

.faq_tab {
    margin-bottom: 40px;
    border-bottom: 2px solid #333;
}

.faq_tab ul {
    display: flex;
    flex-wrap: wrap;
}

.faq_tab li {
    margin-right: -1px;
}

.faq_tab li a {
    display: block;
    padding: 15px 30px;
    border: 1px solid #ddd;
    border-bottom: none;
    color: #555;
    background: #f9f9f9;
    font-weight: 500;
}

.faq_tab li.on a {
    background: #333;
    color: #fff;
    border-color: #333;
}

.faq_list_wrap {
    border-top: 1px solid #333;
}

.faq_item {
    border-bottom: 1px solid #eee;
}

.faq_q {
    position: relative;
    padding: 25px 20px 25px 70px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq_q:hover {
    background: #fafafa;
}

.faq_q .q_icon {
    position: absolute;
    top: 25px;
    left: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: #a37c13;
    /* Reference Gold */
    color: #fff;
    border-radius: 50%;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 18px;
}

.faq_q .subject {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.faq_q .toggle_icon {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    color: #ccc;
    transition: transform 0.3s;
}

.faq_item.active .faq_q .toggle_icon {
    transform: translateY(-50%) rotate(180deg);
    color: #333;
}

.faq_a {
    display: none;
    background: #f8f9fa;
    padding: 30px 20px 30px 70px;
    border-top: 1px solid #eee;
    position: relative;
}

.faq_a .a_inner {
    position: relative;
}

.faq_a .a_icon {
    position: absolute;
    top: 0;
    left: -50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: #555;
    color: #fff;
    border-radius: 50%;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 18px;
}

.faq_a .content {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .faq_q,
    .faq_a {
        padding-left: 50px;
    }

    .faq_q .q_icon,
    .faq_a .a_icon {
        left: 10px;
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: 22px;
        /* Adjust alignment */
    }

    .faq_a .a_icon {
        left: -40px;
        /* Adjust relative to container */
        top: 0;
    }

    .faq_q .subject {
        font-size: 16px;
    }

    .faq_tab li a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

#bo_sch {
    display: flex;
    align-items: center;
    justify-content: center;
}

#bo_sch form {
    display: flex;
    flex-flow: nowrap;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

#bo_sch form #sfl {
    width: calc(30% - 0.4rem);
    margin-right: 0.4rem;
}

#bo_sch form #stx {
    width: calc(45% - 0.4rem);
    margin-right: 0.4rem;
}

#bo_sch form input[type="submit"] {
    width: 25%;
}

/* Shop Product Detail Tabs - Added 2025-01-02 */
/* Shop Product Detail Tabs - Added 2025-01-02 */
#sit_tab {
    margin: 40px 0 20px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    /* Ensure full width */
    box-sizing: border-box;
}

#sit_tab .tab_con {
    width: 100%;
    /* Ensure content area is full width */
    box-sizing: border-box;
}

/* Process Info Box - Ensure it takes full width */
.process-info-box {
    width: 100%;
    max-width: 100%;
    /* Override any potential max-width */
    box-sizing: border-box;
}


.tab_btn {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    gap: 2px;
    /* Add slight gap between tabs */
}

.tab_btn li {
    float: left;
    margin-right: 0;
    /* Use gap instead */
    margin-bottom: -1px;
    flex: 1;
    /* Make tabs distribute evenly or at least flexible */
    max-width: 150px;
    /* Optional constraint */
}

.tab_btn li a {
    display: block;
    padding: 12px 10px;
    /* Adjusted padding */
    border: 1px solid transparent;
    border-bottom: none;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px 5px 0 0;
    transition: all 0.2s;
    text-align: center;
}

.tab_btn li.selected a {
    border-color: #ddd;
    border-bottom-color: #fff;
    background: #fff;
    color: #333;
    font-weight: 700;
}

.tab_btn li a:hover {
    background: #fff;
    color: #333;
}


/* ============================================
   Unified Board Styles - 2026-01-02
   Consistent design across all board skins
============================================ */

/* Board Container Title */
#container_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Board List Wrapper */
#bo_list {
    margin-bottom: 2rem;
}

/* Table-based Board List */
.tbl_head01 table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tbl_head01 thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tbl_head01 thead tr th {
    padding: 1rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    text-align: center;
    white-space: nowrap;
}

.tbl_head01 tbody tr {
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.tbl_head01 tbody tr:hover {
    background: #f8f9fa;
}

.tbl_head01 tbody tr.bo_notice {
    background: linear-gradient(135deg, rgba(233, 78, 27, 0.03) 0%, rgba(233, 78, 27, 0.08) 100%);
}

.tbl_head01 tbody tr.bo_notice:hover {
    background: linear-gradient(135deg, rgba(233, 78, 27, 0.05) 0%, rgba(233, 78, 27, 0.1) 100%);
}

.tbl_head01 tbody td {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    vertical-align: middle;
}

.tbl_head01 tbody td.td_subject {
    text-align: left;
    padding-left: 1rem;
}

.tbl_head01 tbody td.td_subject a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-block;
}

.tbl_head01 tbody td.td_subject a:hover {
    color: var(--primary-color);
}

.tbl_head01 tbody td.td_num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-light);
}

.tbl_head01 tbody td.td_num strong {
    color: var(--primary-color);
    font-weight: 600;
}

.tbl_head01 tbody td.td_name {
    font-size: 0.85rem;
}

.tbl_head01 tbody td.td_date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tbl_head01 .empty_table {
    padding: 3rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Category Navigation */
#bo_cate {
    margin-bottom: 1.5rem;
}

#bo_cate_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

#bo_cate_ul li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

#bo_cate_ul li a:hover,
#bo_cate_ul li.on a {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Board Action Buttons */
.bo_fx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    /* flex-wrap: wrap; */
    gap: 1rem;
}

.btn_bo_user,
.btn_bo_adm {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn_b01,
.btn_b02 {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-primary);
}

.btn_b01:hover {
    background: #f8f9fa;
    border-color: var(--text-light);
}

.btn_b02 {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn_b02:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn_admin {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.btn_admin:hover {
    background: #e0e0e0;
}

/* Pagination */
.pg_wrap {
    margin: 2rem 0;
    text-align: center;
}

.pg {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.pg_page,
.pg_start,
.pg_end,
.pg_prev,
.pg_next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.pg_page:hover,
.pg_start:hover,
.pg_end:hover,
.pg_prev:hover,
.pg_next:hover {
    background: #f8f9fa;
    border-color: var(--text-light);
}

.pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.375rem;
}

/* Board View Page */
#bo_v {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

#bo_v_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

#bo_v_info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

#bo_v_info h2 {
    display: none;
}

#bo_v_info strong {
    color: var(--text-primary);
    font-weight: 500;
    margin-left: 0.25rem;
}

#bo_v_atc {
    margin-top: 1.5rem;
}

#bo_v_atc_title {
    display: none;
}

#bo_v_con {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-primary);
}

#bo_v_con img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Attachments */
#bo_v_file {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

#bo_v_file h2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

#bo_v_file ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#bo_v_file li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

#bo_v_file li:last-child {
    border-bottom: none;
}

#bo_v_file a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#bo_v_file a:hover {
    text-decoration: underline;
}

/* View Page Buttons */
#bo_v_top,
#bo_v_bot {
    margin: 1.5rem 0;
}

.bo_v_nb,
.bo_v_com {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Write Form */
#bo_w {
    /* background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
    max-width: inherit;
}

.write_div {
    margin-bottom: 1.5rem;
}

.write_div label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.write_div input[type="text"],
.write_div textarea,
.frm_input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s;
}

.write_div input[type="text"]:focus,
.write_div textarea:focus,
.frm_input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 78, 27, 0.1);
}

.btn_submit {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 0.375rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.btn_submit:hover {
    background: var(--primary-dark);
}

/* Comments */
#bo_vc {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.cmt_tit {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cmt {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.cmt_name {
    font-weight: 600;
    color: var(--text-primary);
}

.cmt_date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cmt_content {
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Board Search */
#bo_sch {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

#bo_sch .frm_select,
#bo_sch select {
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #container_title {
        font-size: 1.25rem;
    }

    .tbl_head01 thead {
        display: none;
    }

    .tbl_head01 tbody tr {
        display: block;
        padding: 1rem;
        margin-bottom: 0.5rem;
        border: 1px solid var(--border-color);
        border-radius: 0.5rem;
        background: #fff;
    }

    .tbl_head01 tbody td {
        display: block;
        text-align: left;
        padding: 0.25rem 0;
        border: none;
    }

    .tbl_head01 tbody td.td_num {
        display: none;
    }

    .tbl_head01 tbody td.td_subject {
        font-size: 1rem;
        font-weight: 500;
        padding-left: 0;
        margin-bottom: 0.5rem;
    }

    .tbl_head01 tbody td.td_name,
    .tbl_head01 tbody td.td_date {
        display: inline-block;
        font-size: 0.8rem;
        color: var(--text-light);
    }

    .tbl_head01 tbody td.td_name::after {
        content: '��';
        margin: 0 0.5rem;
    }

    #bo_v {
        padding: 1rem;
    }

    #bo_v_title {
        font-size: 1.25rem;
    }

    #bo_v_info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .bo_fx {
        flex-direction: column;
        align-items: stretch;
    }

    .btn_bo_user {
        justify-content: center;
    }

    .pg {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   Board UI Standardization (Common Styles)
   Applied to: Guide, Portfolio, Blog, etc.
============================================ */

/* 1. Category Tabs (Pill/Capsule Style) */
#bo_cate {
    display: block;
    margin: 30px 0 20px;
}

#bo_cate h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_cate ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-bottom: 0 !important;
}

#bo_cate ul:after {
    display: none;
}

#bo_cate li {
    float: none;
    margin: 0;
}

#bo_cate a {
    display: block;
    padding: 8px 20px;
    background: #f1f3f5;
    color: #495057;
    border: 1px solid #f1f3f5;
    border-radius: 50px;
    /* Capsule Style */
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    width: auto !important;
    /* Override width:90px */
}

#bo_cate a:hover {
    background: #e9ecef;
    border-color: #e9ecef;
    color: #212529;
}

#bo_cate #bo_cate_on {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 2. Buttons (Height 40px, Flex Alignment) */
.bo_fx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.bo_fx ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
}

/* Reset existing floats and margins if any */
.btn_bo_adm,
.btn_bo_user,
#bo_list_total {
    float: none !important;
    width: auto !important;
    padding: 0 !important;
}

#bo_list_total {
    font-weight: 500;
    color: #555;
}

/* Common Button Style */
.btn_b01,
.btn_b02,
.btn_admin,
.btn_submit,
.btn_cancel,
.btn_list {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 40px !important;
    padding: 0 20px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    cursor: pointer;
    vertical-align: middle;
    line-height: 1 !important;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* White/Gray Button (.btn_b01) */
.btn_b01 {
    background: #fff !important;
    border-color: #ddd !important;
    color: #555 !important;
}

.btn_b01:hover {
    background: #f8f9fa !important;
    border-color: #ccc !important;
    color: #333 !important;
}

/* Primary/Dark Button (.btn_b02) */
.btn_b02 {
    background: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
}

.btn_b02:hover {
    background: #000 !important;
    border-color: #000 !important;
}

/* Admin Button */
.btn_admin {
    background: #fff !important;
    border-color: #e03131 !important;
    color: #e03131 !important;
}

.btn_admin:hover {
    background: #e03131 !important;
    color: #fff !important;
}

/* Submit/Confirm Button (Write Page) */
.btn_submit {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.btn_submit:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* 3. Form Elements (Height 40px) */
/* Reset select and input styles */
#bo_sch select,
.frm_input,
.bo_search_select {
    height: 40px !important;
    line-height: 38px !important;
    /* height - borders */
    padding: 0 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    background-color: #fff;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
}

#bo_sch .btn_submit {
    height: 40px !important;
    padding: 0 20px !important;
    margin: 0 !important;
}

/* Search Box Container */
fieldset#bo_sch {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #f1f3f5;
}

/* ========================================
   Inline Style Refactoring Classes
   (인라인 스타일 정리용 클래스)
======================================== */

/* Cart Page Styles (장바구니) */
#sod_bsk.container-content {
    margin-top: 50px;
}

.cart-header {
    margin-bottom: 20px;
}

.cart-header h2 {
    font-size: 24px;
    font-weight: bold;
}

.cart-header p {
    color: #666;
}

.btn_cart_del.bo_fx {
    margin-top: 20px;
    justify-content: flex-start;
}

#sod_bsk_tot {
    background: #f8f9fa;
    padding: 20px;
    text-align: right;
    margin-top: 30px;
    border-radius: 8px;
}

#sod_bsk_tot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

#sod_bsk_tot li {
    font-size: 1.2em;
}

#sod_bsk_tot .price-highlight {
    color: var(--primary-color);
    font-size: 1.5em;
}

#sod_bsk_act.bo_fx {
    justify-content: center;
    margin-top: 40px;
}

/* Index Page Styles (메인 페이지) */
.main_visual .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

.pricing-tabs.mobile-only {
    display: none;
}

.text-underline {
    text-decoration: underline;
}

/* FAQ Admin Button */
.faq_admin_btn {
    text-align: right;
    margin-bottom: 15px;
}

/* Guide Board Styles */
#bo_sch.search-right {
    text-align: right;
    margin: 10px 0;
}

.notice-badge {
    color: red;
    font-weight: bold;
}

.comment-count {
    color: #ff3061;
    font-size: 11px;
}

/* ========================================
   Page File Styles (Inline Refactoring)
======================================== */

/* Team Box - Organization Chart */
.org-team {
    min-width: 9.375rem;
    /* 150px */
}

/* Service CTA Section */
.svc_cta {
    text-align: center;
    margin-top: 5rem;
    /* 80px */
}

/* Contact Cards Hidden */
.contact-cards.hidden {
    display: none;
}

/* Map Canvas */
#map_canvas {
    width: 100%;
    height: 25rem;
    /* 400px */
}

/* Text underline link */
.privacy_link {
    text-decoration: underline;
}

/* Process Info Box (Shop Item) */
.process-info-box {
    background: #f9f9f9;
    padding: 1.875rem;
    /* 30px */
    border-radius: 0.75rem;
    /* 12px */
    margin-bottom: 1.25rem;
    /* 20px */
}

.process-info-header {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    /* 15px */
    margin-bottom: 1.25rem;
    /* 20px */
}

.process-info-icon {
    width: 3.125rem;
    /* 50px */
    height: 3.125rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-info-icon i {
    color: #fff;
    font-size: 1.25rem;
    /* 20px */
}

.process-info-title {
    margin: 0;
    font-size: 1.125rem;
    /* 18px */
    color: #333;
}

.process-info-subtitle {
    margin: 0.3125rem 0 0;
    /* 5px */
    font-size: 0.8125rem;
    /* 13px */
    color: #666;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    /* 10px */
}

.process-step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* 8px */
    background: #fff;
    padding: 0.625rem 0.9375rem;
    /* 10px 15px */
    border-radius: 1.25rem;
    /* 20px */
    border: 1px solid #eee;
}

.process-step-number {
    width: 1.5rem;
    /* 24px */
    height: 1.5rem;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    /* 12px */
    font-weight: bold;
}

.process-step-text {
    font-size: 0.875rem;
    /* 14px */
    color: #333;
}

.process-cta {
    text-align: center;
    padding: 1.25rem 0;
    /* 20px */
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* 8px */
    padding: 0.75rem 1.5625rem;
    /* 12px 25px */
    color: #fff;
    text-decoration: none;
    border-radius: 1.5625rem;
    /* 25px */
    font-weight: 600;
}

/* _about_company.php (legacy) styles */
.about-section-margin {
    margin-bottom: 5rem;
    /* 80px */
}

.about-headline {
    font-size: 2.25rem;
    /* 36px */
    font-weight: bold;
    margin-bottom: 1.875rem;
    /* 30px */
    color: #e94e1b;
    text-align: center;
}

.about-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-image-wrap {
    width: 40%;
    border-radius: 0.625rem;
    /* 10px */
    overflow: hidden;
}

.about-text-wrap {
    width: 55%;
}

.about-subhead {
    font-size: 1.5rem;
    /* 24px */
    margin-bottom: 1.25rem;
    /* 20px */
    font-weight: bold;
}

.about-desc {
    font-size: 1rem;
    /* 16px */
    line-height: 1.8;
    color: #555;
    word-break: keep-all;
}

.mission-section {
    margin-bottom: 5rem;
    background: #fff;
    padding: 3.75rem 2.5rem;
    /* 60px 40px */
    border-radius: 0.9375rem;
    /* 15px */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-title {
    font-size: 1.875rem;
    /* 30px */
    margin-bottom: 0.625rem;
    /* 10px */
}

.mission-subtitle {
    font-size: 1.125rem;
    /* 18px */
    color: #e94e1b;
    font-weight: bold;
    margin-bottom: 2.5rem;
    /* 40px */
}

.mission-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    /* 20px */
    flex-wrap: wrap;
    margin-bottom: 3.125rem;
    /* 50px */
}

.mission-item {
    width: 12.5rem;
    /* 200px */
    height: 12.5rem;
    border-radius: 50%;
    border: 2px solid #e94e1b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.mission-item-title {
    font-size: 1.25rem;
    /* 20px */
    color: #333;
    display: block;
    margin-bottom: 0.3125rem;
    /* 5px */
}

.mission-item-desc {
    font-size: 0.75rem;
    /* 12px */
    color: #666;
}

.mission-divider {
    font-size: 1.875rem;
    /* 30px */
    color: #ccc;
}

/* ========================================
   Cart Table Responsive Styles
======================================== */
#sod_bsk .tbl_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#sod_bsk table {
    min-width: 100%;
    table-layout: fixed;
}

#sod_bsk thead th {
    white-space: nowrap;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
}

/* Column widths */
#sod_bsk .chk_box {
    width: 3rem;
}

#sod_bsk .td_prd,
#sod_bsk thead th:nth-child(2) {
    /* width: 40%; */
    min-width: 12rem;
}

#sod_bsk .td_num,
#sod_bsk thead th:nth-child(3) {
    width: 10%;
    min-width: 5rem;
    text-align: center;
}

#sod_bsk .td_numbig,
#sod_bsk thead th:nth-child(4),
#sod_bsk thead th:nth-child(5) {
    width: 15%;
    min-width: 6rem;
    text-align: right;
}

/* Product image size */
#sod_bsk .sod_img {
    width: max-content;
    /* height: 3.5rem; */
    flex-shrink: 0;
}

#sod_bsk .sod_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

#sod_bsk .td_prd {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#sod_bsk .sod_name {
    flex: 1;
    min-width: 0;
    word-break: keep-all;
}

#sod_bsk .prd_name {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    #sod_bsk table {
        display: block;
    }

    #sod_bsk thead {
        display: none;
    }

    #sod_bsk tbody {
        display: block;
    }

    #sod_bsk tbody tr {
        display: flex;
        flex-wrap: wrap;
        padding: 1rem;
        border-bottom: 1px solid #eee;
        align-items: center;
        gap: 0.5rem;
    }

    #sod_bsk tbody td {
        border: none;
        padding: 0.25rem 0;
    }

    #sod_bsk .td_chk {
        width: auto;
        flex-shrink: 0;
    }

    #sod_bsk .td_prd {
        flex: 1;
        min-width: 60%;
    }

    #sod_bsk .td_num,
    #sod_bsk .td_numbig {
        width: auto;
        font-size: 0.875rem;
    }

    #sod_bsk .td_numbig.text_right {
        margin-left: auto;
        font-weight: bold;
        color: var(--primary-color);
    }
}

/* MyPage Quick Links */
.mypage-quick-links {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}