@charset "UTF-8";

/* =========================================
   1. CSS Reset & Base Styles
   ========================================= */
:root {
    --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    --color-primary: #FF5F00;      /* í¬ì¸íŠ¸ ì£¼í™©ìƒ‰ */
    --color-primary-dark: #e04e00;
    --color-text: #333333;         /* ê¸°ë³¸ í…ìŠ¤íŠ¸ */
    --color-white: #ffffff;
    --color-bg-dark: #000000;      /* ë°°ê²½ ê²€ì • */
    --color-bg-gray: #333D4B;
    --header-height: 100px;
}

/* Pretendard Font Import */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
    margin: 0; padding: 0; border: 0;
    font-size: 100%; font: inherit; vertical-align: baseline;
    font-family: var(--font-main);
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; font-family: var(--font-main); color: var(--color-text); }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; display: block; }

/* =========================================
   2. Common Utilities & Components
   ========================================= */
.inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px; /* ì¢Œìš° ì—¬ë°± ì¶”ê°€ */
}

/* Buttons */
.btn {
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}
.btn-warning { background: linear-gradient(45deg, var(--color-primary), #FF9353); color: #fff; }
.btn-orange { background: var(--color-primary); color: #fff; }
.btn-gray { background: var(--color-bg-gray); color: #fff; }

.flexcontainer { display: flex; flex-wrap: wrap; }

/* =========================================
   3. Header & Navigation (PC)
   ========================================= */
   header#global-header {
    z-index: 1000 !important; /* í—¤ë”ëŠ” ë¬´ì¡°ê±´ ìµœìƒìœ„ */
    width: 100%;
    height: var(--header-height);
    background-color: #000000; /* ë°˜íˆ¬ëª… ì œê±° -> ì™„ì „ ê²€ì€ìƒ‰ */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /* í•˜ë‹¨ì— ì‚´ì§ íšŒìƒ‰ ë¼ì¸ì„ ì¤˜ì„œ ë³¸ë¬¸ê³¼ í—¤ë”ë¥¼ êµ¬ë¶„ (ì„ íƒì‚¬í•­) */
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}


header#global-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo a { display: block; }
.logo img { height: 40px; width: auto; }

/* Desktop Nav */
.gnb-pc { display: flex; height: 100%; align-items: center; gap: 40px; }
.gnb-pc > li { position: relative; height: 100%; display: flex; align-items: center; }
.gnb-pc > li > a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
}
.gnb-pc > li:hover > a,
.gnb-pc > li > a.active { color: var(--color-primary); }



/* Submenu (Dropdown) - ë””ìžì¸ ë³€ê²½ */
.submenu {
    z-index: 1001 !important; /* ë“œë¡­ë‹¤ìš´ ë©”ë‰´ëŠ” í—¤ë” ì•ˆì—ì„œë„ ê°€ìž¥ ìœ„ */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    
    background: #000; /* ë°°ê²½ì€ ê²€ì • ìœ ì§€ */
    
    /* [Key Change] í…Œë‘ë¦¬ë¥¼ ì¶”ê°€í•˜ì—¬ ë°°ê²½ê³¼ êµ¬ë¶„ */
    border: 1px solid #ffffff; 
    
    
    /* [ìˆ˜ì •] ê³ ì • ë„ˆë¹„ ëŒ€ì‹  ì»¨í…ì¸ ì— ë§žì¶¤ */
    min-width: 220px; /* ìµœì†Œ ë„ˆë¹„ëŠ” í™•ë³´ */
    width: max-content; /* â˜… ì»¨í…ì¸  ê¸¸ì´ì— ë§žì¶° ë„ˆë¹„ê°€ ìžë™ìœ¼ë¡œ ëŠ˜ì–´ë‚¨ */

    padding: 15px 0;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    
    /* ê·¸ë¦¼ìžëŠ” ê²€ì€ ë°°ê²½ì—ì„œ ì•ˆ ë³´ì´ë¯€ë¡œ ì œê±°í•˜ê±°ë‚˜ ì•½í•˜ê²Œ ìœ ì§€ */
    box-shadow: none; 
    
    border-radius: 0 0 8px 8px; /* í•˜ë‹¨ ë‘¥ê¸€ê²Œ */
    z-index: 1001; /* í—¤ë”ë³´ë‹¤ ìœ„ì— ì˜¤ë„ë¡ ì•ˆì „ìž¥ì¹˜ */
}

/* ë§ˆìš°ìŠ¤ ì˜¬ë ¸ì„ ë•Œ ì„œë¸Œë©”ë‰´ í‘œì‹œ */
.gnb-pc > li:hover .submenu { 
    opacity: 1; 
    visibility: visible; 
    margin-top: 1px; /* border-bottomê³¼ ê²¹ì¹˜ì§€ ì•Šê²Œ ë¯¸ì„¸ ì¡°ì • */
}

/* ì„œë¸Œë©”ë‰´ í•­ëª© ìŠ¤íƒ€ì¼ */
.submenu li a {
    display: block;
    color: #fff; /* ê¸°ë³¸ í°ìƒ‰ìœ¼ë¡œ ë³€ê²½ */
    padding: 12px 20px;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #222; /* ë©”ë‰´ ì‚¬ì´ ì˜…ì€ êµ¬ë¶„ì„  ì¶”ê°€ */
    /* [ì¶”ê°€] ì¤„ë°”ê¿ˆ ë°©ì§€ */
    white-space: nowrap; /* â˜… í…ìŠ¤íŠ¸ê°€ ê¸¸ì–´ë„ í•œ ì¤„ë¡œ ê³ ì • */
}

.submenu li:last-child a {
    border-bottom: none; /* ë§ˆì§€ë§‰ ì¤„ì€ êµ¬ë¶„ì„  ì œê±° */
}

.submenu li a:hover { 
    color: var(--color-primary); /* ì˜¤ë²„ì‹œ ì£¼í™©ìƒ‰ */
    background-color: #111; /* ì•„ì£¼ ì‚´ì§ ë°ì€ ê²€ì • */
}


/* Mobile Trigger (Hidden on PC) */
.mobile-menu-btn { display: none; color: #fff; font-size: 28px; cursor: pointer; background: none; border: none; }


/* =========================================
   4. Footer
   ========================================= */
.footer {
    background: #111; /* ì´ë¯¸ì§€ ëŒ€ì‹  ë‹¨ìƒ‰ ì²˜ë¦¬ í˜¹ì€ ê¸°ì¡´ ì´ë¯¸ì§€ ìœ ì§€ */
    color: #fff;
    padding: 60px 0;
}
.footer .inner { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col.brand { flex: 2; }
.footer h3 { margin-bottom: 20px; font-size: 18px; font-weight: 700; color: #fff; }
.footer p, .footer span, .footer a { font-size: 14px; color: #aaa; line-height: 1.6; display: block; margin-bottom: 5px; }
.footer a:hover { color: var(--color-primary); }


/* =========================================
   5. Responsive (Mobile/Tablet)
   ========================================= */
@media screen and (max-width: 1024px) {
    .inner { width: 100%; }
    
    /* PC Nav - 모바일 슬라이드 메뉴 */
    .gnb-pc {
        position: fixed;
        top: 0;
        right: -100%; /* 기본적으로 화면 밖에 숨김 */
        width: 85%; /* 화면의 85% 차지 */
        max-width: 350px; /* 최대 너비 제한 */
        height: 100vh;
        background: #000;
        border-left: 1px solid rgba(255,255,255,0.2);
        padding: 100px 25px 30px; /* 상단 헤더 높이만큼 패딩 */
        overflow-y: auto; /* 스크롤 가능 */
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        flex-direction: column;
        gap: 0;
    }
    
    .gnb-pc.active { 
        right: 0; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.5); 
    }
    
    .gnb-pc > li {
        width: 100%;
        height: auto;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .gnb-pc > li > a {
        padding: 16px 15px; /* 패딩 줄임 */
        font-size: 16px; /* 폰트 크기 줄임 20px → 16px */
        justify-content: space-between;
        display: flex;
    }
    
    /* Mobile Submenu */
    .submenu {
        position: static; /* fixed 해제 */
        transform: none;
        opacity: 1;
        visibility: visible;
        background: #111;
        border: none;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        width: 100%;
        box-sizing: border-box;
        padding: 10px 0;
        display: none; /* 기본적으로 숨김 */
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .submenu.open { 
        display: block; 
    }
    
    .submenu li a { 
        text-align: left; 
        padding: 10px 15px 10px 30px; /* 왼쪽 패딩 증가로 들여쓰기 효과 */
        font-size: 14px; /* 서브메뉴는 더 작게 */
        white-space: normal; /* 긴 텍스트 줄바꿈 허용 */
        border-bottom: none;
    }

    /* Mobile Toggle Button */
    .mobile-menu-btn { 
        display: block; 
        z-index: 1001; 
    }
}




/* =========================================
   Global Footer Style
   ========================================= */
   #global-footer {
    background-color: #0D0D0D; /* ë©”ì¸ ë‰´ìŠ¤ ì„¹ì…˜ê³¼ ì´ì–´ì§€ëŠ” ë”¥ ë¸”ëž™ */
    padding: 80px 0 60px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* ì•„ì£¼ ì€ì€í•œ ìƒë‹¨ ë¼ì¸ */
    font-size: 15px;
}

#global-footer .inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

/* 1. ì™¼ìª½: íšŒì‚¬ ì •ë³´ */
.footer-item.company-info {
    flex: 2; /* ê³µê°„ì„ ë” ë§Žì´ ì°¨ì§€ */
    min-width: 300px;
}

.footer-logo img {
    height: 30px; /* ë¡œê³  í¬ê¸° ì¡°ì • */
    margin-bottom: 25px;
    margin-left: 0px;
    opacity: 0.9;
}

.address-box .company-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px; /* ì¤„ê°„ê²© 10px, í•­ëª©ê°„ê²© 20px */
}

.info-list li {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.info-list li.w-100 {
    width: 100%; /* ì£¼ì†ŒëŠ” í•œ ì¤„ ì „ì²´ ì‚¬ìš© */
}

.info-list span {
    color: #555; /* ë¼ë²¨ ìƒ‰ìƒ */
    margin-right: 8px;
    font-weight: 500;
}

/* SNS ì•„ì´ì½˜ */
.sns-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.sns-links a img {
    width: 36px;
    height: 36px;
    transition: opacity 0.3s;
}

.sns-links a:hover img {
    opacity: 0.7;
}

.copyright {
    color: #444;
    font-size: 13px;
    margin-top: 20px;
}

/* 2. & 3. ì˜¤ë¥¸ìª½: CTA ë°•ìŠ¤ ê³µí†µ */
.footer-item {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-desc {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ì „í™”ë²ˆí˜¸ ë¦¬ìŠ¤íŠ¸ */
.tel-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.tel-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.tel-list a:hover {
    color: #FF5F00;
}

/* í‘¸í„° ë²„íŠ¼ ìŠ¤íƒ€ì¼ */
.btn-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
    height: 56px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-orange {
    background-color: #FF5F00;
    color: #fff;
    border: 1px solid #FF5F00;
}

.btn-orange:hover {
    background-color: #e04e00;
    transform: translateY(-2px);
}

.btn-gray {
    background-color: transparent;
    color: #fff;
    border: 1px solid #444;
}

.btn-gray:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.05);
}

/* =========================================
   Mobile Responsive (ë°˜ì‘í˜•)
   ========================================= */
@media screen and (max-width: 1024px) {
    #global-footer { padding: 60px 0; }
    .footer-container { gap: 40px; }
    
    /* íƒœë¸”ë¦¿ì—ì„œ ì¤„ë°”ê¿ˆ ì²˜ë¦¬ */
    .footer-item.company-info {
        flex: 100%; /* íšŒì‚¬ ì •ë³´ëŠ” í•œ ì¤„ ë‹¤ ì°¨ì§€ */
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 40px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    /* ëª¨ë°”ì¼ ë ˆì´ì•„ì›ƒ */
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-item {
        width: 100%;
        text-align: left; /* ëª¨ë°”ì¼ì—ì„œë„ ì™¼ìª½ ì •ë ¬ ìœ ì§€ (ê°€ë…ì„±) */
    }

    .info-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-footer {
        max-width: 100%; /* ë²„íŠ¼ ê½‰ ì°¨ê²Œ */
    }
    
    .footer-logo img {
        height: 30px;
    }
}


/* =========================================
   SNS ì•„ì´ì½˜ ìŠ¤íƒ€ì¼ (Bootstrap Icons)
   ========================================= */
   .sns-links {
    display: flex;
    gap: 20px; /* ì•„ì´ì½˜ ì‚¬ì´ ê°„ê²© */
    margin-bottom: 25px;
    padding-top: 10px;
}

.sns-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* ì•„ì´ì½˜ ê¸°ë³¸ ìƒ‰ìƒ (ë°ì€ íšŒìƒ‰) */
    color: #aaa; 
    
    /* ì•„ì´ì½˜ í¬ê¸° */
    font-size: 28px; 
    
    transition: all 0.3s ease;
}

/* í˜¸ë²„ íš¨ê³¼ */
.sns-links a:hover {
    /* ë§ˆìš°ìŠ¤ ì˜¬ë ¸ì„ ë•Œ ì£¼í™©ìƒ‰ìœ¼ë¡œ ë³€ê²½ */
    color: #FF5F00; 
    
    /* ì‚´ì§ ìœ„ë¡œ ë– ì˜¤ë¥´ëŠ” íš¨ê³¼ */
    transform: translateY(-3px);
}






/* =========================================
   Global Contact Section (ìˆ˜ì •ë¨)
   ========================================= */

/* (ê¸°ì¡´ ë°°ê²½ ë° Inner ìŠ¤íƒ€ì¼ ìœ ì§€...) */
.global-contact-section {
    background: linear-gradient(180deg, #111418 0%, #080a0d 100%);
    padding: 120px 0;
    color: #fff;
}
.global-contact-section .inner { max-width: 1300px; margin: 0 auto; padding: 0 20px; }


/* 1. ì¸íŠ¸ë¡œ ë° ì¹œê·¼í•œ ë©”ì‹œì§€ */
.contact-intro {
    text-align: center;
    margin-bottom: 80px;
}

/* ê¸°ì¡´ ëª…ì–¸ ìŠ¤íƒ€ì¼ */
.quote-box { margin-bottom: 30px; opacity: 0.8; }
.quote-box .eng { font-size: 18px; color: #8B95A1; margin-bottom: 10px; font-style: italic; font-family: 'Montserrat', sans-serif;}
.quote-box .kor { font-size: 16px; color: #6E6E73; }
.main-copy { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 30px; font-family: 'Paperlogy-8ExtraBold'; }
.main-copy .highlight { color: #FF5F00; font-style: normal; }

/* â˜… ì¶”ê°€ëœ ì¹œê·¼í•œ ê°€ì´ë“œ ë©”ì‹œì§€ ìŠ¤íƒ€ì¼ */
.friendly-guide {
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 20px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.friendly-guide p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.friendly-guide span {
    font-size: 16px;
    color: #D1D5DB;
    line-height: 1.6;
    display: block;
}

.friendly-guide em {
    color: #FF5F00;
    font-style: normal;
    font-weight: 700;
}


/* 2. í¼ ë ˆì´ì•„ì›ƒ & í°íŠ¸ í†µì¼ (í•µì‹¬!) */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-layout { display: flex; gap: 80px; }
.form-col { flex: 1; }

/* â˜…â˜…â˜… ì¢Œìš°ì¸¡ íƒ€ì´í‹€ ìœ„ìƒ í†µì¼ â˜…â˜…â˜… */
/* ì™¼ìª½ì˜ h4ì™€ ì˜¤ë¥¸ìª½ì˜ labelì„ ë™ì¼í•˜ê²Œ ìŠ¤íƒ€ì¼ë§ */
.left-col h4, 
.input-box label {
    font-size: 18px;    /* í¬ê¸°ë¥¼ 18pxë¡œ í†µì¼ (ê¸°ì¡´ ì˜¤ë¥¸ìª½ 14px -> 18px í™•ëŒ€) */
    font-weight: 700;   /* êµµê²Œ í†µì¼ */
    color: #fff;        /* ì™„ì „í•œ í°ìƒ‰ìœ¼ë¡œ í†µì¼ */
    margin-bottom: 15px; /* í•˜ë‹¨ ê°„ê²© í†µì¼ */
    display: block;
    letter-spacing: -0.5px;
}

/* í•„ìˆ˜í‘œì‹œ(*) ìƒ‰ìƒ */
.req { color: #FF5F00; margin-left: 4px; font-size: 18px; }


/* --- ìž…ë ¥ í•„ë“œ ìŠ¤íƒ€ì¼ --- */
.input-line, .input-underline {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    height: 40px;
    transition: 0.3s;
}

.input-line:focus, .input-underline:focus {
    border-color: #FF5F00;
    outline: none;
}

.input-underline::placeholder { color: rgba(255,255,255,0.3); font-size: 15px; font-weight: 400; }

/* --- ì²´í¬ë°•ìŠ¤ & ë¼ë””ì˜¤ --- */
.checkbox-wrapper label, .check-item label, .radio-wrap label {
    cursor: pointer;
    font-size: 16px; /* ë³¸ë¬¸ í°íŠ¸ ì‚¬ì´ì¦ˆ */
    color: #D1D5DB;  /* ë³¸ë¬¸ ì»¬ëŸ¬ (ì‚´ì§ íšŒìƒ‰) */
    font-weight: 400;
}

.custom-check, .radio-wrap input[type="radio"] {
    accent-color: #FF5F00;
    width: 18px; height: 18px;
    margin-right: 8px; vertical-align: middle; cursor: pointer;
}

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 10px; }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 20px; }
.input-box { display: flex; flex-direction: column; }
.input-box.full-width { grid-column: span 2; }
.radio-wrap { display: flex; flex-wrap: wrap; gap: 20px; padding: 5px 0; }

/* í…ìŠ¤íŠ¸ ì—ì–´ë¦¬ì–´ */
.textarea-box {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
}
.textarea-box:focus { border-color: #FF5F00; outline: none; }

/* êµ¬ë¶„ì„  */
.divider { height: 1px; background: rgba(255, 255, 255, 0.1); margin: 40px 0; }
.required-notice { text-align: right; color: #8B95A1; font-size: 14px; margin-bottom: 30px; }
.required-notice span { color: #FF5F00; }

/* ë²„íŠ¼ */
.submit-area { margin-top: 60px; text-align: center; }
.btn-submit {
    background: #FF5F00;
    color: #fff;
    border: none;
    padding: 18px 60px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 95, 0, 0.3);
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-submit:hover { background: #e04e00; transform: translateY(-3px); }

/* ëª¨ë°”ì¼ */
@media screen and (max-width: 1024px) {
    .form-layout { flex-direction: column; gap: 50px; }
    .input-grid { grid-template-columns: 1fr; }
    .input-box.full-width { grid-column: span 1; }
    .check-grid { grid-template-columns: 1fr; }
}

/* ëŒ€í–‰ì‚¬ ì²´í¬ë°•ìŠ¤ í•˜ë‹¨ ê°„ê²© í™•ë³´ */
.agency-check {
    margin-bottom: 45px !important;
}

/* ë¯¸íŒ… ìƒì„¸ ë‚´ìš© ë³´ê¸° ê°•ì¡° ìŠ¤íƒ€ì¼ */
.detail-link-highlight {
    display: inline-block;
    color: #FF5F00 !important; /* ë¡œê·¸í†µ ì˜¤ë Œì§€ */
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline; /* ë°‘ì¤„ ê°•ì¡° */
    text-underline-offset: 5px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.detail-link-highlight:hover {
    color: #fff !important;
    text-decoration: none;
}

.detail-link-highlight i {
    font-size: 13px;
    margin-left: 3px;
    vertical-align: middle;
}

/* ë¯¸íŒ… ì‹ ì²­í•˜ê¸° ì²´í¬ë°•ìŠ¤ ìƒë‹¨ ì—¬ë°± */
.mt-2 {
    margin-top: 10px;
}




/* ==================================================
   [Common Component] Modern Pagination - Dark Premium
   ================================================== */
   .pagination-container {
    margin: 60px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}

.pagination-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px; /* ì„¸ë ¨ëœ ë¼ìš´ë“œê°’ */
    background: #191F28; /* ê¸°ë³¸ ì¹´ë“œ ë°°ê²½ìƒ‰ê³¼ í†µì¼ */
    color: #8B95A1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ìˆ«ìž/ì•„ì´ì½˜ ë§ˆìš°ìŠ¤ ì˜¤ë²„ ë° í™œì„±í™” ìƒíƒœ */
.pagination-list li a:hover,
.pagination-list li a.active {
    background: #FF5F00;
    color: #ffffff;
    border-color: #FF5F00;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 95, 0, 0.25);
}

/* ì²˜ìŒ/ì´ì „/ë‹¤ìŒ/ë ì•„ì´ì½˜ ë‘ê»˜ ë³´ì • */
.pagination-list li a i {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* [Responsive] ëª¨ë°”ì¼ ëŒ€ì‘ */
@media screen and (max-width: 768px) {
    .pagination-container { margin: 40px 0; }
    .pagination-list { gap: 5px; }
    .pagination-list li a {
        width: 36px;
        height: 36px;
        font-size: 13px;
        border-radius: 8px;
    }
}