       :root {
        
 --main-color: #111827; /* Obsidian Black (½Å·Ú, °í±Þ) */
            --sub-color: #9ca3af;  /* Metallic Silver (±Ý¼Ó Áú°¨, ¼­Æ÷Æ®) */
            --point-color: #df4242; /* Racing Red (¿ªµ¿¼º, °­ÇÑ °­Á¶) */
            --footer-bg: #111827;
            --panel-bg: #22252a;
            --border-color: #e9ecef;
            --bg-light: #f8f9fc;
            --form-bg: #ffffff;
  --text-on-main: #ffffff;
            --text-on-sub: #ffffff;
            --text-on-point: #ffffff;
        }

        body {
            font-family: 'Pretendard', sans-serif;
            background-color: #ffffff;
            color: #333;font-weight: 500;
            word-break: keep-all;
            padding-bottom: 0;/*badge,bg-primary µî ±âº» ÄÃ·¯ Ä¿½ºÅÒÀ¸·Î º¯°æÇÒ ¼ö ÀÖµµ·Ï Ãß°¡*/
        }
        
        @media (max-width: 991px) {
            body { padding-bottom: 60px; } /*½ºÆ¼Å°¸Þ´º ¹Ì»ç¿ë½Ã ÆÐµù Á¦°Å*/
        }
.badge.bg-primary { background-color: var(--main-color) !important; color: var(--text-on-main); }
        .badge.bg-secondary { background-color: var(--sub-color) !important; color: var(--text-on-sub); }
        .badge.bg-warning { background-color: var(--point-color) !important; color: var(--text-on-point); }
        
        .badge {
            padding: 0.4em 0.8em;
            border-radius: 6px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
/* ==========================================
   ·¹°Å½Ã È£È¯¿ë À¯Æ¿¸®Æ¼
   ========================================== */
/* ¸ð¹ÙÀÏ¿¡¼­¸¸ ¼û±è (hidden-xs) */
@media (max-width: 575.98px) {
    .hidden-xs { display: none !important; }
}

/* ¸ð¹ÙÀÏ¿¡¼­¸¸ º¸ÀÓ (visible-xs) */
@media (min-width: 576px) {
    .visible-xs { display: none !important; }
}
        .text-primary { color: var(--main-color) !important; }
        .text-secondary { color: var(--sub-color) !important; }
a {color: inherit;
   text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}
a:hover, a:focus {
  color: #e92247;
  text-decoration: none;
  outline: none;
}
.container {
  max-width: 1200px;
}

.container-m {
  max-width: 1000px;
}

.container-s {
  max-width: 960px;
}

.container-xs {
  max-width: 900px;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }

.container-s,.container-xs {
  max-width: 100%;
}
.container-m {
 max-width: 100%;
}


}

        .text-sub { color: var(--point-color); }
        .text-main { color: var(--main-color); }
        
        .top-bar { background-color: #f8f9fa; border-bottom: 1px solid #eeeeee; display: block; }
        .top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; font-size: 0.85rem; }
        .top-bar-title { font-weight: 700; color: #555; letter-spacing: -0.3px; }
        .top-bar-links { display: flex; align-items: center; }
        .top-bar-links a { position: relative; color: #666; text-decoration: none; font-weight: 500; transition: color 0.2s; padding-right: 0.8rem; margin-right: 0.8rem; }
        .top-bar-links a:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 12px; background-color: #ccc; }
        .top-bar-links a:last-child { padding-right: 0; margin-right: 0; }
        .top-bar-links a:hover { color: var(--main-color); }

        @media (max-width: 991px) { .top-bar { display: none; } }

        .header-nav { 
            background-color: rgba(255, 255, 255, 0.98); 
            backdrop-filter: blur(5px);
            padding-top: 1.25rem; padding-bottom: 1.00rem; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
            position: sticky; top: 0; z-index: 1020; 
        }
        .header-container { position: relative; display: flex; align-items: center; justify-content: space-between; width: 100%; }

        @media (max-width: 991px) { .header-nav { padding-top: 0.6rem; padding-bottom: 0.6rem; } }
        
        .logo-placeholder { 
            width: 120px; height: 35px; background-color: #e0e0e0; 
            display: flex; align-items: center; justify-content: center; 
            font-size: 14px; color: #666; font-weight: 600; text-decoration: none; border-radius: 4px; 
        }
        .pc-logo { margin: 0; display: flex; } 
        .mobile-logo { margin: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none; } 
        .mobile-menu-toggle { border: none; padding: 0; box-shadow: none; background: transparent; cursor: pointer; display: none; } 
        .mobile-menu-icon { font-size: 2rem; color: #333; }
        
        @media (max-width: 991px) {
            .pc-logo { display: none; }
            .mobile-logo { display: flex; }
            .mobile-menu-toggle { display: block; }
        }

        .mobile-phone-link { text-decoration: none; display: none; align-items: center; font-size: 1.4rem; color: #333; }
        .mobile-phone-img { width: 22px; height: 22px; object-fit: contain; }
        
        @media (max-width: 991px) { .mobile-phone-link { display: flex; } }

        .pc-nav-list { margin-left: auto; display: flex; gap: 0.5rem; flex-direction: row; }
        .navbar-nav .nav-link { font-weight: 500; padding: 0.2rem 1rem !important; transition: color 0.3s ease; color: #333 !important; }
        .navbar-nav .nav-link:hover { color: var(--main-color) !important; }
        .navbar-nav .nav-link.active-custom { color: var(--main-color) !important; font-weight: 700; }
        
        .pc-search-item { display: flex; align-items: center; margin-left: 0.5rem; } 
        .search-icon-size { font-size: 1.25rem; }

        @media (max-width: 991px) { .pc-search-item { display: none; } }
        
        .search-collapse-panel { position: absolute; top: 100%; left: 0; width: 100%; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); border-top: 1px solid #e0e0e0; z-index: 1020; }
        .search-panel-inner { padding: 1.5rem 0; }
        .search-input-wrap { position: relative; max-width: 600px; margin: 0 auto; }
        .search-input { width: 100%; border-radius: 50rem; padding: 1rem 1.5rem 1rem 1.5rem; padding-right: 3.5rem; border: 2px solid var(--main-color); font-size: 1.05rem; outline: none; transition: box-shadow 0.3s; }
        .search-input:focus { box-shadow: 0 0 0 0.25rem rgba(29, 60, 250, 0.2); }
        .search-submit-btn { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 1.3rem; color: var(--main-color); cursor: pointer; padding: 0; }
        
        .search-toggle-btn[aria-expanded="true"] .search-icon { display: none !important; }
        .search-toggle-btn[aria-expanded="true"] .close-icon { display: inline-block !important; }
        .search-toggle-btn[aria-expanded="false"] .search-icon { display: inline-block !important; }
        .search-toggle-btn[aria-expanded="false"] .close-icon { display: none !important; }

        main { min-height: calc(100vh - 250px); padding-bottom: 80px; }

        .hero-section {
            position: relative;
            background-image: url('/common/img_24/services/int_bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 5rem 0;
            overflow: hidden;
        }

        /* ¹è°æ ¾îµÓ°Ô Ã³¸®ÇÏ¿© °¡µ¶¼º È®º¸ */
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
            z-index: 1;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            min-height: 500px;
        }

        .hero-text-area {
            color: #ffffff;
            flex: 1;
            padding-right: 2rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }
        
        .hero-title .highlight {
            color: var(--point-color); /* ½Ã°¢Àû Æ÷ÀÎÆ®¸¦ À§ÇÑ ÆÄ½ºÅÚÅæ ºí·ç */
        }

        .hero-desc {
            font-size: 1.1rem;
            color: #eee;
            line-height: 1.6;
            margin-bottom: 2rem;
            word-break: keep-all;
        }

        .hero-badges {
            display: flex;
            gap: 1rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }
        .hero-badge i { margin-right: 0.5rem; color: var(--point-color); }

        .hero-form-area {
            flex: 0 0 480px; /* Æû °íÁ¤ ³Êºñ ÁöÁ¤ */
            width: 100%;
        }

        .quote-card {
            background: var(--form-bg);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .quote-header { text-align: center; margin-bottom: 1.5rem; }
        .quote-title { font-size: 1.5rem; font-weight: 800; color: #1e293b; margin-bottom: 0.5rem; letter-spacing: -0.5px; }
        .quote-subtitle-badge {
            display: inline-block;
            background: #e0f2fe;
            color: #0284c7;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        /* ½ºÅÜ ÀÎµðÄÉÀÌÅÍ (ÂüÁ¶2 ¹Ý¿µ) */
        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            gap: 0.5rem;
        }
        .step-item { display: flex; align-items: center; font-size: 0.85rem; font-weight: 600; color: #94a3b8; }
        .step-item.active { color: #0f172a; }
        .step-number {
            width: 24px; height: 24px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
            background: #e2e8f0;
            color: #64748b;
            margin-right: 0.4rem;
            font-size: 0.75rem;
        }
        .step-item.active .step-number { background: var(--point-color); color: white; }
        .step-divider { width: 30px; height: 1px; background: #e2e8f0; }

        .form-group-title { font-size: 0.9rem; font-weight: 700; color: #334155; margin-bottom: 0.5rem; display: block;width: 100%; text-align: left; }
        .form-group-title .req { color: #ef4444; margin-left: 2px; }

        /* Á¢±Ù¼ºÀ» °í·ÁÇÑ Ä¿½ºÅÒ ¶óµð¿À ¹Ú½º */
        .custom-radio2-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        /* 4°³Â¥¸® ±×¸®µå (°ø°£À¯Çü) */
        .grid-4 { grid-template-columns: repeat(4, 1fr); }

        .custom-radio2 { position: relative; }
        
        /* ½ÇÁ¦ ÀÎÇ²Àº ½Ã°¢ÀûÀ¸·Î¸¸ ¼û±è (½ºÅ©¸°¸®´õ ÀÛµ¿) */
        .custom-radio2 input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 100%; height: 100%;
            cursor: pointer;
            z-index: 2;
        }

        .custom-radio2 label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 1rem 0.5rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            height: 100%;
        }

        .custom-radio2 label i { font-size: 1.4rem; color: #64748b; margin-bottom: 0.4rem; }
        .custom-radio2 label span { font-size: 0.85rem; font-weight: 600; color: #475569; }

        /* ¼±ÅÃµÇ¾úÀ» ¶§ÀÇ ½ºÅ¸ÀÏ º¯È­ */
        .custom-radio2 input[type="radio"]:checked + label {
            background:  var(--bg-light);
            border-color: var(--point-color);
            box-shadow: 0 0 0 1px var(--point-color);
        }
        .custom-radio2 input[type="radio"]:checked + label i,
        .custom-radio2 input[type="radio"]:checked + label span { color: var(--point-color);/*¾ÆÀÌÄÜ ¹× ±¸ºÐÀÌ¸§*/ }
        
        /* Æ÷Ä¿½º Á¢±Ù¼º (Å°º¸µå ÅÇ ÀÌµ¿ ½Ã) */
        .custom-radio2 input[type="radio"]:focus-visible + label {
            outline: 2px solid var(--main-color);
            outline-offset: 2px;
        }

        /* ÅØ½ºÆ®¸¸ ÀÖ´Â ¶óµð¿À Å¸ÀÔ */
        .custom-radio2.text-only label { padding: 0.8rem 0.7rem; flex-direction: row; }
        .custom-radio2.text-only label span { margin: 0; font-size: 0.9rem; }

        .form-select-custom {
            width: 100%; padding: 0.7rem 1rem; font-size: 0.95rem; font-weight: 500;
            color: #334155; background-color: #fff; border: 1px solid #cbd5e1;
            border-radius: 8px; margin-bottom: 1.5rem;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px 12px;
        }
        .form-select-custom:focus { border-color: var(--point-color); outline: none; box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1); }
        
        .form-input-custom {
             width: 100%; padding: 0.8rem 1rem; font-size: 0.95rem;
             border: 1px solid #cbd5e1; border-radius: 8px; margin-bottom: 1rem;
        }
        .form-input-custom:focus { border-color: var(--point-color); outline: none; box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1); }

       .btn-submit-quote {
            width: 100%; background: var(--main-color);; /* ÂüÁ¶2 ¹öÆ° »ö»ó À¯»ç °è¿­ */
            /*background: linear-gradient(135deg, #2652e4 0%, #384bd9 100%);*/
            color: #fff; border: none; padding: 1rem;
            border-radius: 8px; font-size: 1.1rem; font-weight: 700;
            transition: transform 0.2s, box-shadow 0.2s;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .btn-submit-quote:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3); }

        @media (max-width: 991px) {/*¸ð¹ÙÀÏ*/
            .hero-section { padding: 2rem 0; }
            .hero-container { flex-direction: column; text-align: center; }
            .hero-text-area { padding-right: 0; }
            .hero-title { font-size: 1.5rem; }
            .hero-badges { justify-content: center; }
            .hero-form-area { flex: auto; max-width: 100%; }
		   .custom-radio2 label i { display: none;  font-size:1.5rem; color: #64748b; margin-bottom: 0.2rem; }
           .custom-radio2 label span { font-size:0.9rem; font-weight: 600; color: #475569; }
		    /* ÅØ½ºÆ®¸¸ ÀÖ´Â ¶óµð¿À Å¸ÀÔ */
        .custom-radio2.text-only label { padding: 0.6rem 0.5rem; flex-direction: row; }
        .custom-radio2.text-only label span { margin: 0; font-size:0.9rem; }
		   .hero-desc {
            font-size: 0.9rem;
            color: #cbd5e1;
            line-height: 1.2;
            margin-bottom: 1.6rem;
            word-break: keep-all;
        }


    .quote-card {
            background: var(--form-bg);
            border-radius: 16px;
            padding: 1.5rem 1rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        }

         




/* ==========================================
           [ÇÊ¼ö CSS] ¹«ÇÑ ·Ñ¸µ ¹æ¾î ·¹ÀÌ¾Æ¿ô 
           ========================================== */
        .marquee-container {
            width: 100%;
            overflow: hidden; /* ¿µ¿ª ¹ÛÀ¸·Î ³ª°¡´Â ·Î°í ¼û±è */
            background-color: #f8fafc;
            padding: 20px 0;
            display: flex; /* ÀÚ½Ä ¿ä¼Ò °¡·Î ¹èÄ¡ */
        }

        .marquee-track {
            display: flex;
            width: max-content; /* ³»ºÎ ÄÜÅÙÃ÷ ±æÀÌ¸¸Å­ Æ®·¢ ³Êºñ ÀÚµ¿ È®Àå (¸Å¿ì Áß¿ä) */
            /* 
               JS¿¡¼­ 4¹è(repeat(4))·Î º¹»çÇßÀ¸¹Ç·Î, 
               ¿øº» 1¼¼Æ®ÀÇ À§Ä¡ÀÎ -25%±îÁö¸¸ ÀÌµ¿ÇØ¾ß ²÷±è ¾ø´Â ·çÇÁ°¡ ¿Ï¼ºµË´Ï´Ù. 
               ¼Óµµ(20s)´Â ±âÈ£¿¡ ¸Â°Ô Á¶ÀýÇÏ¼¼¿ä.
            */
            animation: marqueeRolling 20s linear infinite; 
        }

        /* ¸¶¿ì½º ¿À¹ö ½Ã ÀÏ½ÃÁ¤Áö (UX Çâ»ó) */
        .marquee-track:hover {
            animation-play-state: paused;
        }

        .partner-logo-box {
            flex-shrink: 0; /* ·Î°í Âî±×·¯Áü ¹æÁö */
            margin: 0 15px; /* ·Î°í °£°Ý (ÁÂ¿ì ¸¶Áø) */
        }

        .partner-logo-box img {
            display: block;
            width: 200px;
            height: height:145px;border-radius: 12px;
            object-fit: contain;
        }

        @keyframes marqueeRolling {
            0% {
                transform: translateX(0);
            }
            100% {
                /* 4¼¼Æ® Áß µü 1¼¼Æ®(-25%)¸¸Å­¸¸ ÀÌµ¿ ÈÄ 0%·Î ¼ø°£ÀÌµ¿ */
                transform: translateX(-25%);
            }
        }






              /* --- Common Section Styles --- */
        .section-padding { padding: 5rem 0; }
        .section-title-wrap { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
        .section-title-wrap h2 { font-size: 2rem; font-weight: 800; letter-spacing: -1px; margin: 0; color: #1e293b; }
        .section-title-wrap .btn-view-all { font-size: 0.9rem; color: #64748b; text-decoration: none; font-weight: 600; display: flex; align-items: center; transition: color 0.2s; }
        .section-title-wrap .btn-view-all:hover { color: var(--main-color); }

        /* --- Live Reception & Receipt Cards --- */
        .receipt-card { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .receipt-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
        .receipt-img { width: 100%;height:180px; background-color: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-weight: 600;; }
		.receipt-img img { width: 100%;height:auto }
        .receipt-body {background: #fff; padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
        .receipt-badge { font-size: 0.75rem; background: #f1f5f9; color: #475569; padding: 0.3rem 0.6rem; border-radius: 4px; align-self: flex-start; margin-bottom: 0.8rem; font-weight: 600; }
        .receipt-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: #1e293b; }
        
		.receipt-desc { font-size: 0.9rem; color: #64748b; line-height: 1.5; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
  
        /* .receipt-desc { font-size: 0.9rem; color: #64748b; line-height: 1.5; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } ¸» ÁÙÀÏ ¶§*/

        .receipt-footer { margin-top: auto; border-top: 1px solid #f1f5f9; padding-top: 1rem; display: flex; justify-content: space-between; font-size: 0.85rem; color: #94a3b8; }

        .rolling-card { background: #fff; border-radius: 12px; border: 2px solid var(--main-color); box-shadow: 0 10px 30px rgba(29, 60, 250, 0.1); height: 100%; display: flex; flex-direction: column; }
        .rolling-header { padding: 1.5rem; border-bottom: 1px solid #e2e8f0; text-align: center; background-color: #f8fafc; border-radius: 10px 10px 0 0; }
        .rolling-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--main-color); margin: 0; }
        
        /* Swiper Àû¿ëÀ» À§ÇØ ³ôÀÌ´Â À¯ÁöÇÏµÇ, ³»ºÎ ¸®½ºÆ® °ü·Ã ºÒÇÊ¿äÇÑ ¼Ó¼º Á¦°Å */
        .rolling-container { flex-grow: 1; padding: 1rem 0; overflow: hidden; position: relative; height: 350px; }
        
        /* rolling-itemÀÌ ÀÌÁ¦ swiper-slide ¿ªÇÒÀ» ¼öÇà
        .rolling-item { padding: 12px 1.5rem; font-size: 0.95rem; color: #334155; border-bottom: 1px dashed #e2e8f0; display: flex; align-items: center; font-weight: 500; height: 55px; box-sizing: border-box; }
        .rolling-item:last-child { border-bottom: none; }
        .rolling-item .badge { font-weight: normal; margin-right: 10px; }

		/* ==========================================
   [½Å±Ô/¼öÁ¤] ¸®½ºÆ® ¾ÆÀÌÅÛ ³»ºÎ ±×¸®µå(Grid/Flex) ·¹ÀÌ¾Æ¿ô
   ========================================== */
.rolling-item { 
    padding: 12px 1.5rem; 
    font-size: 0.95rem; 
    color: #334155; 
    border-bottom: 1px dashed #e2e8f0; 
    display: flex; 
    align-items: center; 
    font-weight: 500; 
    height: 55px; 
    box-sizing: border-box; 
    width: 100%; /* ºÎ¸ð ³Êºñ Ã¤¿ò */
}
.rolling-item:last-child { border-bottom: none; }

/* ·¹ÀÌ¾Æ¿ô ºÐÇÒ Å¬·¡½º (JS¿¡¼­ »ç¿ë) */
.rolling-item-badge {
    flex: 0 0 50px; /* ¹îÁö °íÁ¤ ³Êºñ */
}
.rolling-item-badge .badge {
    width: 100%;
    text-align: center;
    font-weight: normal; 
}
.rolling-item-service {
    flex: 1 1 auto; /* ³²Àº ¿µ¿ª ¸ðµÎ Â÷Áö */
    padding-left: 15px; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; /* ±ÛÀÚ ±æ¾îÁö¸é ¸»ÁÙÀÓ(...) Ã³¸® */
}
.rolling-item-name {
    flex: 0 0 60px; /* ÀÌ¸§ ¿µ¿ª °íÁ¤ ³Êºñ */
    text-align: center; 
    color: #666;
}
.rolling-item-date {
    flex: 0 0 80px; /* ³¯Â¥ ¿µ¿ª °íÁ¤ ³Êºñ */
    text-align: right;
}

/* ==================================================
   3. Swiper Standard Branch Section (¸®¼Â ¹× ¹ë·±½º ¿Ïº® º¹±¸)
================================================== */
.branch-section { background-color: #f1f5f9; padding: 5rem 0; border-top: 1px solid #e2e8f0; }

/* ÁÂÃø ¹è³Ê: °­Á¦ ³ôÀÌ Á¶Àý »èÁ¦, ÀÚ¿¬½º·´°Ô 100% Ã¤¿ò */
.branch-banner {
    background: linear-gradient(145deg, #e8782d 0%, #df3838 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: #fff;
    height: 100%; /* ±º´õ´õ±â ¾øÀÌ 100% À¯Áö */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255, 51, 35, 0.2);
    position: relative;
    overflow: hidden;
}
/* PC È­¸é(992px ÀÌ»ó)¿¡¼­ ÁÂÃø ¹è³ÊÀÇ À§¾Æ·¡¸¦ ¿ìÃø Ä«µå »çÀÌÁî¿¡ ¸ÂÃç ÁÙÀÓ */
@media (min-width: 992px) {
    .branch-banner {
        /* ¿ìÃøÀÇ »óÇÏ ±×¸²ÀÚ ¿©¹é(15px + 15px = 30px)¸¸Å­ ±ð¾Æ³¿ */
        height: calc(100% - 30px) !important; 
        
        /* ±ð¾Æ³½ ¸¸Å­ À§¾Æ·¡ ¿©¹éÀ» ÁÖ¾î ¿ìÃø Ä«µå¿Í ¼öÆò¼±À» ¿Ïº®È÷ ¸ÂÃã */
        margin: 0px 0 !important; 
    }


}

.branch-badge {
    background-color: rgba(255, 255, 255, 0.2); color: #fff;
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; display: inline-block; align-self: flex-start; margin-bottom: 1.5rem;
}
.branch-banner h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.3; letter-spacing: -1px; }
.branch-banner p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin-bottom: 2rem; word-break: keep-all; }
.branch-btn {
    background-color: #fff; color: var(--main-color);
    padding: 1rem 1.5rem; border-radius: 8px; font-weight: 700;
    text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; align-self: flex-start;
}
.branch-btn:hover { background-color: #f8f9fa; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); color: var(--main-color); }

/* ¿ìÃø ½½¶óÀÌ´õ: ±×¸²ÀÚ Àß¸² ¹æÁö + °­Á¦ ³ôÀÌ ¸ÂÃã */
.branch-slider-wrapper { position: relative; height: 100%; display: block; }
.branch-swiper {
    width: 100%; height: 100%;
    padding: 15px 5px !important; 
    margin: -15px -5px !important; 
}

/* ½½¶óÀÌµå°¡ ºÎ¸ð ³ôÀÌ¸¦ »ó¼Ó¹Þ¾Æ À¯¿¬ÇÏ°Ô ´Ã¾î³ªµµ·Ï flex Ã³¸® */
.branch-swiper .swiper-slide {
    height: auto; 
    display: flex; 
}

/* Ä«µå°¡ ³²´Â °ø°£À» 100% ²Ë Ã¤¿ìµµ·Ï flex-grow: 1 ºÎ¿© */
.branch-card {
    background-color: #fff; border-radius: 12px; overflow: hidden;
    width: 100%; 
    flex-grow: 1; /* ÇÙ½É: Ä«µå°¡ ÁÂÃø ¹è³Ê ³ôÀÌ¸¸Å­ Âß ´Ã¾î³² */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0; display: flex; flex-direction: column;
}
.branch-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.branch-card-img { width: 100%; height: 160px; background-color: #e2e8f0; display: flex; justify-content: center; align-items: center; color: #94a3b8; font-weight: 600;; }
.branch-card-img img{ width: 100%; height:auto;  }
.branch-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.branch-location { font-size: 0.8rem; color: var(--main-color); font-weight: 700; margin-bottom: 0.5rem; display: block; }
.branch-card-title { font-size: 1.15rem; font-weight: 800; color: #1e293b; margin-bottom: 0.8rem; letter-spacing: -0.5px; }

/*branch-card-desc { font-size: 0.9rem; color: #64748b; line-height: 1.5; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }/*±ÛÀÚ¼ö Á¦ÇÑÇÒ ¶§ »ç¿ë*/
.branch-card-desc { font-size: 0.9rem; color: #64748b; line-height: 1.5; margin-bottom: 1.5rem; }

.branch-card-footer { margin-top: auto; border-top: 1px solid #f1f5f9; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; }
.branch-status { font-size: 0.8rem; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
.status-open { background-color: #dcfce7; color: #166534; }
.status-ready { background-color: #fef9c3; color: #854d0e; }
.branch-card-link { font-size: 0.85rem; font-weight: 600;color: #333; text-decoration: none; }
.status-red { background-color: #fff2f2; color: #ff5452; }

/* ³×ºñ°ÔÀÌ¼Ç ¹öÆ° */
.branch-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%; 
    background-color: rgba(255, 255, 255, 0.95); 
    border: 1px solid #e2e8f0; color: #333; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.15); 
    transition: all 0.2s ease; z-index: 10;
}
.branch-nav-btn.swiper-button-disabled { opacity: 0; pointer-events: none; }
.branch-nav-btn:hover:not(.swiper-button-disabled) { background-color: var(--main-color); color: #fff; }
.branch-nav-btn.prev { left: -10px; }
.branch-nav-btn.next { right: -10px; }

/*¸ð¹ÙÀÏ Æ÷ÇÔÀÛÀº µð¹ÙÀÌ½º*/
@media (max-width: 991px) {
    .branch-banner { padding: 2.2rem 1.25rem;  }
    .branch-banner h3 { font-size: 1.6rem; }
	.branch-banner p { font-size: 0.9rem;  }
	.branch-card-img img{ width: 100%; height:auto;max-height:160px;  }
     .branch-slider-wrapper { margin-top:60px; }
	 .branch-card:hover { transform: translateY(0px);/*¸ð¹ÙÀÏ¿¡¼­´Â ¿òÁ÷ÀÓ ¾ø°Ô*/ }
    
}
        /* PC Floating Sidebar */
        .pc-floating-sidebar { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); z-index: 1035; display: flex; flex-direction: column; gap: 12px; width: 170px; }
        .floating-contact-card { background-color: #1e2126; border-radius: 20px; padding: 24px 16px; text-align: center; color: #ffffff; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
        .floating-icon-circle { width: 48px; height: 48px; background-color: #2a2d34; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.3rem; color: #ffffff; }
        .floating-contact-title { font-size: 0.85rem; color: #8c92a0; margin-bottom: 4px; font-weight: 700; }
        .floating-contact-number { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
        .floating-contact-hours { font-size: 0.75rem; color: #737885; font-weight: 500; }
        
        .floating-action-btn { background-color: #1e2126; border-radius: 16px; padding: 12px 14px 12px 18px; display: flex; align-items: center; justify-content: space-between; color: #ffffff; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.15); transition: transform 0.2s ease, background-color 0.2s ease; }
        .floating-action-btn:hover { background-color: #2a2d34; color: #ffffff; transform: translateY(-3px); }
        .floating-action-text { font-size: 0.95rem; font-weight: 800; letter-spacing: -0.5px; }
        .floating-action-icon { width: 34px; height: 34px; background-color: #2a2d34; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
        
        /* Scroll to Top Btn */
        .scroll-top-btn { width: 48px; height: 48px; background-color: #ffffff; color: #333; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 5px 15px rgba(0,0,0,0.15); border: 1px solid #eaeaea; border-radius: 50%; cursor: pointer; align-self: flex-end; transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s ease, background-color 0.2s, color 0.2s; opacity: 0; visibility: hidden; transform: translateY(15px); }
        .scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .scroll-top-btn:hover { background-color: var(--main-color); color: #ffffff; border-color: var(--main-color); }
        
        /* À¯Æ¿¸®Æ¼ */
        .d-none-custom { display: none !important; }


 /* ==================================================
           4. Features & Partners 
        ================================================== */
       
        .feature-box { text-align: center; padding: 2rem 1.5rem; background: #fff; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); height: 100%; border: 1px solid #f1f5f9; }
        .feature-icon { width: 64px; height: 64px; background-color: rgba(29, 60, 250, 0.1); color: var(--main-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1.5rem; }
        .feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #1e293b; }
        .feature-desc { font-size: 0.95rem; color: #64748b; line-height: 1.6; word-break: keep-all; }

        .partner-section {padding: 20px 0;  background-color: #eaecee;  overflow: hidden; border-top:1px solid #d7dde4;box-shadow: 0 10px 30px rgba(0,0,0,0.03);margin-bottom:-80px; }
        .partner-title-wrap { text-align: center; margin-bottom: 2.5rem; }
        .partner-title-wrap h3 { font-size: 1.2rem; font-weight: 700; color: #64748b; letter-spacing: -0.5px; }
    


/* ==========================================
           [ÃÖ¼ÒÈ­µÈ CSS] Swiper ±¸Á¶¿¡ ¸ÂÃá ½ºÅ¸ÀÏ
           ========================================== */
    
        .partner-marquee-swiper .swiper-wrapper {
            transition-timing-function: linear !important; /* ²÷±è ¾ø´Â ·Ñ¸µÀ» À§ÇÑ ÇÊ¼ö ¼Ó¼º */
        }
      .partner-marquee-swiper .swiper-slide {
            width:160px; /* ·Î°í °íÁ¤ ³Êºñ ÁöÁ¤ */
            height:auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

      /*  .partner-marquee-swiper .swiper-slide img {
            width: 100%;
            height: 100%;border-radius: 12px;
            object-fit: contain;
        }*/

      .partner-marquee-swiper .swiper-slide img {    
	 width: 100%;    height: 100%;    border-radius: 12px;    object-fit: contain;    
    /* Ãß°¡: ±âº» »óÅÂ¿¡¼­ Èæ¹é(Grayscale) Ã³¸® ¹× È£¹ö ¾Ö´Ï¸ÞÀÌ¼Ç¿ë Æ®·£Áö¼Ç ¼³Á¤ */
    filter: grayscale(100%);
    /* hover ½Ã ºÎµå·´°Ô ÀüÈ¯µÇµµ·Ï transition Ãß°¡ */
    transition: filter 0.4s ease; 
}

/* Ãß°¡: ÀÌ¹ÌÁö È£¹ö ½Ã Èæ¹é ÇÊÅÍ Á¦°Å (º»¿¬ÀÇ ÄÃ·¯ ³ëÃâ) */
   .partner-marquee-swiper .swiper-slide img:hover {
    filter: grayscale(0%);}
  
        .page-header { text-align: center; margin-bottom: 3rem; }
        .page-title { font-weight: 700; font-size: 1.8rem; color: #212529; margin-bottom: 0.5rem; letter-spacing: -0.5px; }

        /* FAQ ±×¸®µå ÄÁÅ×ÀÌ³Ê (ÀÌ¹ÌÁö ÂüÁ¶ ¿Ïº® ±¸Çö) */
        .faq-grid-wrapper {
            border-top: 1px solid #e0e0e0;
            border-left: 1px solid #e0e0e0;
            display: grid;
            /* ±âº»ÀûÀ¸·Î 5Ä­ ¹èÄ¡ */
            grid-template-columns: repeat(5, 1fr); 
            background-color: #fff;
        }

        .faq-item {
            border-right: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
            padding: 2.5rem 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #333;
        }

        /* Hover ¹× Active È¿°ú (¾îµÎ¿î ¹ÝÀü) */
        .faq-item:hover {
            background-color: #262626;
            color: #ffffff;
        }

        .faq-num {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            transition: color 0.2s;
        }
        
        .faq-text {
            font-size: 0.9rem;
            line-height: 1.5;
            transition: color 0.2s;
        }


/* ³×ºñ*/
       .top-bar {
            background-color: #f7f2f2;
            border-bottom: 1px solid #fae5e4;
            display: none; 
        }
        @media (min-width: 992px) {
            .top-bar { display: block; } 
        }
        .top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; font-size: 0.85rem; }
        .top-bar-title { font-weight:600; color: #333; letter-spacing: -0.3px; }
        .top-bar-links { display: flex; align-items: center; }
        .top-bar-links a { position: relative; color: #333; text-decoration: none; font-weight: 500; transition: color 0.2s; padding-right: 0.4rem; margin-right: 0.4rem; }
        .top-bar-links a:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 12px; background-color: #ccc; }
        .top-bar-links a:last-child { padding-right: 0; margin-right: 0; }
        .top-bar-links a:hover { color: var(--main-color); }

        .header-nav { 
            background-color: rgba(255, 255, 255, 1); 
            backdrop-filter: blur(5px);
            padding-top: 0.5rem; padding-bottom:0.5rem; /*³×ºñ ¼¼·Î ±½±â*/
            box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
            position: sticky; top: 0; z-index: 1020; 
        }
        .header-container { position: relative; }
        
        .mobile-menu-toggle { border: none; padding: 0; box-shadow: none; background: transparent; }
        .mobile-menu-toggle:focus { box-shadow: none; }
        .mobile-menu-icon { font-size: 1.8rem; color: #333;font-weight:500; }
        
       /* .logo-placeholder { 
            width: 120px; height: 35px; background-color: #e0e0e0; 
            display: flex; align-items: center; justify-content: center; 
            font-size: 14px; color: #666; font-weight: 600; text-decoration: none; border-radius: 4px; 
        }*/
        .pc-logo { margin: 0; display: none; }
		.pc-logo img { width:100px; height:60px;object-fit: contain; vertical-align: middle; }
        .mobile-logo { margin: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; }
        .mobile-logo img { width: 130px; height: 30px; object-fit: contain; vertical-align: middle; }


        @media (min-width: 992px) {
            .pc-logo { display: flex; }
            .mobile-logo { display: none; }
            .mobile-menu-toggle { display: none; }
        }

        .mobile-phone-link { text-decoration: none; display: inline-block; }
        .mobile-phone-icon { width: 30px; height: 30px; object-fit: contain; vertical-align: middle; }
        @media (min-width: 992px) { .mobile-phone-link { display: none; } }

        .pc-nav-list { margin-left: auto; display: flex; gap: 0.5rem; }
        .navbar-nav .nav-link {font-size: 1rem; font-weight: 600; padding: 0.5rem 1rem !important; transition: color 0.3s ease; color: #121212 !important; }
        .navbar-nav .nav-link:hover{ color: var(--main-color) !important; }
        
 
       
        /* ¸Þ´º ¿­¸² ½Ã µÚ¿¡ ±ò¸®´Â ¾îµÎ¿î ¹è°æ */
        .menu-backdrop {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background-color: rgba(0,0,0,0.8); z-index: 1040;
            opacity: 0; visibility: hidden; transition: all 0.3s ease-in-out;
        }
        /* active Å¬·¡½º°¡ ºÙÀ¸¸é ¹è°æ ³ëÃâ */
        .menu-backdrop.active { 
            opacity: 1; 
            visibility: visible; 
        }








        /* ========================================================== */
        /* Ä¿½ºÅÒ ·¹ÇÁÆ® ÆÐ³Î (¸ð¹ÙÀÏ Àü¿ë µðÀÚÀÎ) */
        /* ========================================================== */
        /* 1. ¸ð¹ÙÀÏ ±âº» ¼³Á¤ (ºäÆ÷Æ®ÀÇ 90% Àû¿ë) */
.custom-left-panel { 
    --bs-offcanvas-width: 90vw; /* 100vw -> 90vw·Î º¯°æ */
    --bs-offcanvas-bg: #161619; 
    border-right: none;
    visibility: hidden; 
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out !important; 
    z-index: 1050;
}

/* 2. ¹Ìµð¾î Äõ¸® ºÐ¸® (ÅÂºí¸´/PC È¯°æ) */
@media (min-width: 480px) { 
    .custom-left-panel {
        --bs-offcanvas-width: 360px; 
    }
}
        .custom-left-panel.active { visibility: visible !important; transform: translateX(0) !important; }
        
        .panel-header { 
            padding: 20px 15px; 
            border-bottom: none; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            position: relative;
        }
        
        .custom-close-btn { 
            position: absolute; 
            right: 20px; 
            top: 50%; 
            transform: translateY(-50%); 
            box-shadow: none; 
            filter: invert(1) grayscale(100%) brightness(200%); 
            cursor: pointer; 
            opacity: 0.6; 
            transition: opacity 0.2s;
        }
        .custom-close-btn:hover { opacity: 1; }

        .custom-left-panel .offcanvas-title { 
            color: #ddd; 
            font-size: 1.4rem; 
            font-weight: 600; 
            display: flex; 
            align-items: center; 
            margin: 0;
            letter-spacing: -0.5px;
        }
   .custom-left-panel .offcanvas-title img { 
          max-height:30px;
        }
        .custom-left-panel .offcanvas-body { padding: 0; }
        .left-menu-list { padding: 0; margin: 0; list-style: none; }
        
        .custom-left-panel .nav-item { 
            margin-bottom: 0; 
            border-bottom: 1px solid rgba(255,255,255,0.06); 
        }
        .custom-left-panel .nav-item:first-child { 
            border-top: 1px solid rgba(255,255,255,0.06); 
        }

        .custom-left-panel .nav-link { 
            color: #ddd !important; 
            font-weight:600; 
            padding: 15px 24px !important; 
            border-radius: 0; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            transition: background-color 0.2s ease; 
            text-decoration: none; 
            font-size: 0.875rem; 
        }
        
        .chevron-icon { 
            font-size: 0.85rem; 
            color: #888; 
            transition: color 0.2s; 
            font-weight: bold;
        }
        
        .custom-left-panel .nav-link:hover { background-color: rgba(255, 255, 255, 0.03); }
        .custom-left-panel .nav-link:hover .chevron-icon { color: #fff; }
        .custom-left-panel .nav-link.active { background-color: rgba(255, 255, 255, 0.04);
        color: var(--main-color)  !important; 
        box-shadow: none; 

        }
       /*main { min-height: calc(100vh - 250px); padding-top: 40px; padding-bottom: 60px; }*/
     
		/* ÇªÅÍÈ­ÀÌÆ® ¹× ·ÎÁ÷*/
        .site-footer { background-color: #fafafa; border-top: 1px solid #eeeeee; color: #666; font-size: 0.85rem; line-height: 1.7; padding:1rem 0; }
        .footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom:1.5rem; flex-wrap: wrap; gap: 1.5rem; }
        .footer-logo { width: 100px;  background-color: none; display: flex; font-weight: 600; color: #555; text-decoration: none; border-radius: 2px; }
		.footer-logo img { width: 90px;  }
        .footer-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .footer-link-btn { display: inline-block; padding: 0.6rem 1.8rem; border: 1px solid #e0e0e0; background-color: #fffff; color: #333; 
		text-decoration: none; font-weight: 500; font-size: 0.85rem; transition: background-color 0.2s; letter-spacing: -0.3px;border-radius: 8px; }
        .footer-link-btn:hover { background-color: #f0f0f0; }
        .footer-bottom { text-align: left; }
        .footer-bottom p { margin: 0; color: #555; }
        .site-footer .copyright { margin-top: 1rem; font-size: 0.8rem; color: #444; }
        .footer-divider { margin: 0 0.4rem; color: #bbb; }
        
        @media (max-width: 767px) {
            .footer-top { flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
            .footer-links { width: 100%; justify-content: space-between; gap: 0.3rem; }
            .footer-link-btn { flex: 1; text-align: center; padding: 0.7rem 0.5rem; font-size: 0.8rem; }
			.footer-link-btn{ display: none; }/**/
			.footer-logo { display: none; }
        }
        


			

 /* ==========================================
           4. Footer & Floating Elements ´ÙÅ©
           ========================================== */
        .site-footer { background-color: var(--footer-bg); border-top: 1px solid #eeeeee; color: #ddd; font-size: 0.85rem; line-height: 1.7; padding: 2rem 0; }
        .footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem; }
        .footer-logo { width: 140px; height: auto;  font-weight: 600; color: #999; text-decoration: none; border-radius: 2px; }
		.footer-logo img { width:80px; }
        .footer-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        
		/*.footer-link-btn { display: inline-block; padding: 0.7rem 1.8rem; border: 1px solid #e0e0e0; background-color: #fafafa; color: #333; text-decoration: none; font-weight: 500; font-size: 0.85rem; transition: background-color 0.2s; letter-spacing: -0.3px; }
        .footer-link-btn:hover { background-color: #f0f0f0; }*/


.footer-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .footer-link-btn { 
            display: inline-block; padding: 0.7rem 1.8rem; 
            border: 1px solid rgba(255, 255, 255, 0.1); /* Åõ¸íµµ º¸´õ */
            background-color: transparent; 
            color: #d1d5db; text-decoration: none; font-weight: 500; font-size: 0.85rem; 
            transition: all 0.2s; letter-spacing: -0.3px; border-radius: 6px;
        }
        .footer-link-btn:hover { 
            background-color: rgba(255, 255, 255, 0.1); 
            color: #ffffff;
        }


        .footer-bottom { text-align: left; }
        .footer-bottom p { margin-bottom: 0.25rem; color: #999; }
        .site-footer .copyright { margin-top: 1.5rem; font-size: 0.8rem; color: #888; }
        .footer-divider { margin: 0 0.4rem; color: #bbb; }
        
        @media (max-width: 767px) {
            .footer-top { flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
            .footer-links { width: 100%; justify-content: space-between; gap: 0.3rem; }
            .footer-link-btn { flex: 1; text-align: center; padding: 0.7rem 0.5rem; font-size: 0.8rem; }
        }

        /* Mobile Sticky Nav */
        .mobile-sticky-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1030; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 -4px 20px rgba(0,0,0,0.08); border-top: 1px solid #e0e0e0; display: flex; justify-content: space-around; padding: 5px 0; padding-bottom: env(safe-area-inset-bottom); }
           .mobile-sticky-nav .nav-btn { color: #999; font-size: 0.75rem; font-weight: 500; text-decoration: none; flex: 1; text-align: center; }
        .mobile-sticky-nav .nav-btn i { font-size: 1.3rem; display: block; margin-bottom: 2px; }
   
        .mobile-sticky-nav .nav-btn:hover, .mobile-sticky-nav .nav-btn.active { color: var(--point-color); }


		 /* ==========================================
           ºñ±³ UI: ¹öÆ¼ÄÃ ÅÇ ¼½¼Ç ½ºÅ¸ÀÏ Ãß°¡
           ========================================== */
        .vertical-tab-section { padding: 5rem 0 9rem 0; background-color: #ffffff; border-top: 1px solid #e9ecef; }
        
        /* ÁÂÃø °£·« ¼Ò°³ ¹Ú½º ¼öÁ¤: ¹è°æ ÄÃ·¯ ¹× ¿©¹é Á¶Á¤ */
        .intro-box-simple { background-color: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
        .intro-box-badge { display: inline-block; padding: 0.35rem 0.8rem; background-color: #ffffff; color: var(--main-color); border: 1px solid #cbd5e1; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
        .intro-box-title { font-size: 1.8rem; font-weight:700; color: #0f172a; margin-bottom: 0.75rem; letter-spacing: -0.5px; line-height: 1.4; }
        .intro-box-text { font-size: 0.95rem; color: #475569; line-height: 1.6; margin-bottom: 0; word-break: keep-all; }
        
        /* ¼¼·ÎÇü ÅÇ ¹öÆ° */
        .custom-v-tabs { gap: 0.5rem; }
        .custom-v-tabs .nav-link { 
            text-align: left; padding: 1rem 1.5rem; border-radius: 12px; 
            font-size: 1rem; font-weight: 600; color: #475569; 
            background-color: #ffffff; border: 1px solid #e2e8f0; 
            transition: all 0.2s ease; display: flex; align-items: center; justify-content: space-between;
        }
        .custom-v-tabs .nav-link i.icon-left { font-size: 1.2rem; color: #94a3b8; margin-right: 0.75rem; transition: color 0.2s; }
        .custom-v-tabs .nav-link i.icon-right { font-size: 0.9rem; color: #cbd5e1; transition: transform 0.2s, color 0.2s; }
        
        .custom-v-tabs .nav-link:hover { border-color: #cbd5e1; background-color: #f8fafc; }
        .custom-v-tabs .nav-link.active { 
            background-color: var(--main-color); color: #ffffff; border-color: var(--main-color);
            box-shadow: 0 10px 20px rgba(29, 60, 250, 0.15); 
        }
        .custom-v-tabs .nav-link.active i.icon-left, .custom-v-tabs .nav-link.active i.icon-right { color: #ffffff; }
        .custom-v-tabs .nav-link.active i.icon-right { transform: translateX(5px); }

        /* ¿ìÃø »ó¼¼ Á¤º¸ Ä«µå (´ÜÀÏ Æ÷Ä¿½º) */
        .v-tab-pane-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
        .v-tab-img-area { height: 350px; overflow: hidden; position: relative; }
        .v-tab-img-area img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .v-tab-pane-card:hover .v-tab-img-area img { transform: scale(1.05); }
        .v-tab-content-area { padding: 2.5rem; }
        .v-tab-badge { display: inline-block; padding: 0.35rem 0.8rem; background-color: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem; }
        .v-tab-title { font-size: 1.8rem; font-weight: 800; color: #0f172a; margin-bottom: 1rem; letter-spacing: -1px; }
        .v-tab-desc { font-size: 1.05rem; color: #475569; line-height: 1.7; margin-bottom: 1.5rem; word-break: keep-all; }
        
       /* ½ºÆå ¸®½ºÆ® */
        .v-tab-feature-list { list-style: none; padding: 0; margin: 0 0 2rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; background: #f8fafc; padding: 1.5rem; border-radius: 12px; }
        .v-tab-feature-list li { font-size: 0.95rem; font-weight: 500; color: #334155; display: flex; align-items: center; }
        .v-tab-feature-list li i { color: var(--main-color); margin-right: 0.5rem; font-size: 1.1rem; }
        
        /* °¶·¯¸® ÇüÅÂ ¾ÆÀÌÅÛ (º´¿ø/Æ¯¼ö½Ã¼³ ÅÇ ¿ëµµ) */
        .gallery-item-card {
            display: block; text-decoration: none; border-radius: 12px; overflow: hidden;
            border: 1px solid #e2e8f0; background: #fff; transition: transform 0.2s, box-shadow 0.2s; height: 100%;
        }
        .gallery-item-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
        .gallery-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: #f1f5f9; position: relative; }
        .gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .gallery-item-card:hover .gallery-img-wrap img { transform: scale(1.05); }
        .gallery-info { padding: 1rem; }
        .gallery-title { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .gallery-desc { font-size: 0.8rem; color: #64748b; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

      

@media (max-width: 991px) {
.vertical-tab-section { padding: 5rem 0 3rem 0; background-color: #ffffff; border-top: 1px solid #e9ecef; }
            .v-tab-img-area { height: 220px; }
            .v-tab-content-area { padding: 1.5rem; }
            .v-tab-feature-list { grid-template-columns: 1fr; gap: 0.5rem; }
            
            /* ==========================================
               ¸ð¹ÙÀÏ UI: ¼¼·ÎÇü ÅÇ -> °¡·ÎÇü ½º¿ÍÀÌÇÁ ÅÇÀ¸·Î º¯È¯
               ========================================== */
            /* ºÎÆ®½ºÆ®·¦ flex-column °­Á¦ ÇØÁ¦ ¹× ½ºÅ©·Ñ ¼³Á¤ */
            .custom-v-tabs { 
                flex-direction: row !important; 
                flex-wrap: nowrap; 
                overflow-x: auto; 
                -webkit-overflow-scrolling: touch; /* iOS ºÎµå·¯¿î ½ºÅ©·Ñ */
                padding-bottom: 5px; 
                margin-bottom: 1.5rem;
            }
            
            /* ¹Ì°üÀ» À§ÇØ ³×ÀÌÆ¼ºê ½ºÅ©·Ñ¹Ù ¼û±è */
            .custom-v-tabs::-webkit-scrollbar { display: none; }
            
            .custom-v-tabs .nav-link { 
                white-space: nowrap; /* ±ÛÀÚ ÁÙ¹Ù²Þ ¹æÁö */
                flex: 0 0 auto;      /* ³»ºÎ ÄÜÅÙÃ÷¸¸Å­¸¸ ³Êºñ Â÷Áö (½ºÅ©·Ñ À¯µµ) */
                padding: 0.7rem 1.2rem; 
                border-radius: 8px;  /* ¿äÃ»»çÇ×: ¶ó¿îµù Ãà¼Ò */
                justify-content: center;
            }
            
            /* ¸ð¹ÙÀÏ °¡·Î ÅÇ¿¡¼­´Â ¾ÆÀÌÄÜ ¿©¹é Ãà¼Ò ¹× ¿ìÃø È­»ìÇ¥ ¼û±è */
            .custom-v-tabs .nav-link i.icon-left { margin-right: 0.4rem; font-size: 1.1rem; }
            .custom-v-tabs .nav-link i.icon-right { display: none; }
        }



.portfolio-card {position: relative;
        }
        
   
        /* ÀÌ¹ÌÁö ¿ìÃø »ó´Ü ´ã¹éÇÑ ¹èÁö (¿äÃ»»çÇ×) */
        .portfolio-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background-color: rgba(30, 41, 59, 0.5); /* ÁøÇÑ È¸»ö°è¿­ ¹ÝÅõ¸í */
            backdrop-filter: blur(4px);
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 4px; /* ½ÉÇÃÇÑ ´À³¦À» À§ÇØ ¾à°£ÀÇ ¶ó¿îµù¸¸ */
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 10;
        }