@charset "UTF-8";
/* =====================================================================
   부산 세븐브릿지 투어 - 단체접수 페이지 스타일
   기조 : 블랙 포인트 / 모던 / 사이클 축제
   ===================================================================== */

/* ───── Reset / Base ───── */
.ga-wrap *,
.ga-wrap *::before,
.ga-wrap *::after { box-sizing: border-box; }
.ga-wrap {
    font-family: 'Pretendard','Noto Sans KR','Malgun Gothic',sans-serif;
    font-size: 1em;
    color: #222;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ───── 페이지 헤더 ───── */
.ga-page-head {
    position: relative;
    padding: 90px 20px 70px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 60%, #2c2c2c 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.ga-page-head::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.06) 0, transparent 40%);
    pointer-events: none;
}
.ga-page-head .eng {
    display: inline-block;
    font-size: 0.8125em; letter-spacing: 4px; opacity: .85;
    margin-bottom: 14px;
    font-weight: 300;
}
.ga-page-head h1 {
    font-size: 2.625em; font-weight: 800;
    margin: 0 0 14px; letter-spacing: -1px;
}
.ga-page-head p {
    font-size: 1em; opacity: .9; margin: 0;
}

/* ───── 컨테이너 ───── */
.ga-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0px 0px;
}

@media (max-width: 1100px) { .ga-container { padding: 0 2% 0px; } }

/* ───── 탭 메뉴 ───── */
.ga-tabs {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    margin-top: -36px;
    position: relative;
    z-index: 2;
}
.ga-tabs a {
    flex: 1;
    text-align: center;
    padding: 22px 10px;
    font-size: 1em;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all .25s;
    background: #fff;
}
.ga-tabs a:hover { color: #000; background: #f8f8f8; }
.ga-tabs a.active {
    color: #000;
    border-bottom-color: #000;
    background: linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);
}
.ga-tabs a .num {
    display: inline-block;
    font-size: 0.8125em;
    color: #000;
    margin-right: 6px;
    font-weight: 700;
}

/* ───── 패널 ───── */
.ga-panel {
    background: #fff;
    margin-top: 50px;
}

.ga-panel-title {
	text-align: center;
    font-size: 1.625em;
    font-weight: 800;
    color: #000;
    margin: 0 0 8px;
    letter-spacing: -.5px;
}
.ga-panel-desc {
    text-align: center;
    font-size: 0.9375em;
    color: #777;
    margin: 0 0 36px;
    padding-bottom: 28px;
    border-bottom: 2px solid #f0f0f0;
}

/* ───── 안내 페이지 ───── */
.ga-info-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 28px 30px;
    margin-bottom: 30px;
}
.ga-info-box h3 {
    margin: 0 0 16px;
    font-size: 1.125em;
    color: #000;
    font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}
.ga-info-box h3::before {
    content: ''; width: 4px; height: 18px;
    background: #000; border-radius: 2px;
}
.ga-info-box ul { margin: 0; padding-left: 0; list-style: none; }
.ga-info-box li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.9375em; color: #333; line-height: 1.7;
}
.ga-info-box li::before {
    content: '';
    position: absolute; left: 4px; top: 16px;
    width: 6px; height: 6px;
    background: #000; border-radius: 50%;
}
.ga-info-box li strong { color: #000; }

.ga-wrap *,
.ga-wrap *::before,
.ga-wrap *::after { box-sizing: border-box; }
.ga-wrap {
    font-family: 'Pretendard','Noto Sans KR','Malgun Gothic',sans-serif;
    color: #222;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
}

/* 그룹 범례 */
.ga-step-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.ga-step-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875em;
    font-weight: 600;
    color: #666;
}
.ga-step-legend span::before {
    content: '';
    width: 12px; height: 12px;
    border-radius: 3px;
}
.ga-step-legend .lg-part::before { background: #000; }
.ga-step-legend .lg-host::before { background: #ff7a00; }

/* 단계 그리드 */
.ga-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
    position: relative;
}
@media (max-width: 768px) { .ga-step-grid { grid-template-columns: repeat(2, 1fr); } }

.ga-step {
    position: relative;
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 10px;
    padding: 26px 18px 24px;
    text-align: center;
    transition: all .25s;
}

/* 참가자 단계 (1,2) — 블랙 포인트 */
.ga-step.participant { border-color: #e6e6e6; }
.ga-step.participant:hover {
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.ga-step.participant .step-num { background: #000; color: #fff; }

/* 축조위 단계 (3,4) — 오렌지 포인트 */
.ga-step.host {
    border-color: #ffe0c2;
    background: linear-gradient(180deg, #fff8f0 0%, #fff 70%);
}
.ga-step.host:hover {
    border-color: #ff7a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,122,0,.18);
}
.ga-step.host .step-num { background: #ff7a00; color: #fff; }

/* 상단 소속 태그 */
.ga-step .step-tag {
    display: inline-block;
    font-size: 0.6875em;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.ga-step.participant .step-tag { background: #f0f0f0; color: #000; }
.ga-step.host .step-tag { background: #ffe9d4; color: #e35d00; }

.ga-step .step-num {
    display: inline-block;
    width: 40px; height: 40px; line-height: 40px;
    border-radius: 50%;
    font-weight: 700; font-size: 1em;
    margin-bottom: 12px;
}
.ga-step .step-title { font-size: 1em; font-weight: 700; color: #000; margin-bottom: 6px; }
.ga-step .step-desc  { font-size: 0.75em; color: #777; line-height: 1.5; }

/* 단계 연결 화살표 */
.ga-step:not(:last-child)::after {
    content: '\203A';
    position: absolute;
    right: -13px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: 700;
    color: #cfcfcf;
    z-index: 2;
}
/* 인계 지점(2→3) 강조 */
.ga-step.handoff::after {
    content: '인계';
    font-size: 0.625em;
    font-weight: 700;
    color: #ff7a00;
    background: #fff;
    border: 1.5px dashed #ffc89a;
    padding: 3px 6px;
    border-radius: 8px;
    right: -22px;
    line-height: 1;
}
@media (max-width: 768px) {
    .ga-step:not(:last-child)::after {
        content: '\2304';
        right: 50%; top: auto; bottom: -16px;
        transform: translateX(50%);
    }
    .ga-step.handoff::after {
        content: '인계';
        right: 50%; bottom: -14px;
        transform: translate(50%, 0);
    }
}

/* ───── 양식 다운로드 ───── */
.ga-download {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    color: #fff;
    padding: 26px 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.ga-download .dl-info .dl-label {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 4px 10px; border-radius: 4px;
    font-size: 0.75em; letter-spacing: 1px;
    margin-bottom: 8px;
}
.ga-download .dl-info .dl-name {
    font-size: 1.125em; font-weight: 700;
}
.ga-download .dl-btn {
    background: #fff; color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700; font-size: 0.9375em;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}
.ga-download .dl-btn:hover { background: #f0f0f0; transform: translateY(-2px); }
@media (max-width: 600px) {
    .ga-download { flex-direction: column; align-items: flex-start; gap: 16px; }
    .ga-download .dl-btn { width: 100%; text-align: center; }
}

/* ───── 폼 ───── */
.ga-form { margin-top: 10px; }
.ga-row {
    display: flex; /* align-items: flex-start; */
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}
.ga-row:last-child { border-bottom: 0; }
.ga-row .lbl {
    width: 180px; flex-shrink: 0;
    font-weight: 600; color: #333;
    font-size: 0.9375em;
	display: flex;
    align-items: center;
}
.ga-row .lbl .req { color: #e53935; margin-left: 3px; }
.ga-row .inp { flex: 1; min-width: 0; }
@media (max-width: 768px) {
    .ga-row { flex-direction: column; padding: 14px 0; }
    .ga-row .lbl { width: 100%; padding-top: 0; margin-bottom: 8px; }
}

.ga-form input[type=text],
.ga-form input[type=tel],
.ga-form input[type=email],
.ga-form input[type=number],
.ga-form input[type=password],
.ga-form select,
.ga-form textarea {
    width: 100%;
	height: 50px;
    padding: 0px 14px;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    font-size: 0.9375em;
    font-family: inherit;
    background: #fbfbfb;
    transition: all .2s;
}
.ga-form input:focus,
.ga-form select:focus,
.ga-form textarea:focus {
    outline: none;
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}
.ga-form .help { font-size: 0.8125em; color: #888; margin-top: 6px; }

.ga-file-area {
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.ga-file-area input[type=file] {
    flex: 1; min-width: 200px;
    padding: 9px 12px;
    border: 1px dashed #b9b9b9;
    border-radius: 6px;
    background: #fbfbfb;
    font-size: 0.875em;
}

/* ───── 버튼 ───── */
.ga-btn-area {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}
.ga-btn {
    display: inline-flex;
    border: 0;
    border-radius: 3px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    margin: 0 4px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-width: 150px;
	height: 55px;
	padding: 0 20px;
}
.ga-btn-primary {
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    color: #fff;
}
.ga-btn-primary:hover {  }
.ga-btn-line {
    background: #fff;
    color: #555;
    border: 1px solid #d5d5d5;
}
.ga-btn-line:hover { border-color: #000; color: #000; }

/* ───── 상태 메시지 ───── */
.ga-status-msg {
    text-align: center;
    padding: 70px 30px;
}
.ga-status-msg .icon {
    width: 90px; height: 90px; line-height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 50%;
    font-size: 2.625em;
    color: #000;
}
.ga-status-msg .icon.warn { color: #f9a825; background: #fff8e1; }
.ga-status-msg h2 { font-size: 1.5em; color: #000; margin: 0 0 12px; }
.ga-status-msg p  { font-size: 0.9375em; color: #666; line-height: 1.8; }

/* ───── 조회 결과 ───── */
.viewbox {
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 3px;
}

@media (max-width: 768px) { .viewbox { padding: 30px; } }

.viewbox .ga-btn-area { border-top: none; padding-top: 0px; }

.ga-view-table {
    width: 100%;
    border-top: 2px solid #000;
    margin-top: 20px;
}
.ga-view-table th,
.ga-view-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #eeeeee;
    font-size: 0.9375em;
    text-align: left;
}
.ga-view-table th {
    width: 30%;
    background: #f8f8f8;
    color: #555;
    font-weight: 600;
}
.ga-view-table td { color: #222; }
.ga-view-table .num-badge {
    display: inline-block;
    background: #000; color: #fff;
    padding: 4px 12px; border-radius: 4px;
    font-weight: 700; font-size: 0.875em;
}
.ga-view-table .status {
    display: inline-block;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.8125em; font-weight: 600;
}
.ga-view-table .status.s-접수 { background: #f0f0f0; color: #000; }
.ga-view-table .status.s-확인 { background: #fff3e0; color: #e65100; }
.ga-view-table .status.s-완료 { background: #e8f5e9; color: #2e7d32; }
.ga-view-table .status.s-취소 { background: #ffebee; color: #c62828; }

.ga-notice-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 24px 0;
    padding: 18px 22px;
    background: #fff8f0;
    border: 1px solid #ffd9a8;
    border-left: 5px solid #ff7a00;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.08);
}

.ga-notice-highlight .notice-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    background: #ff7a00;
    border-radius: 50%;
}

.ga-notice-highlight .notice-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5a3a16;
}

.ga-notice-highlight .notice-text strong {
    color: #e35d00;
    font-weight: 700;
    background: linear-gradient(transparent 60%, #ffe2bf 60%);
    padding: 0 2px;
}

.ga-notice-highlight .notice-sub {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #8a6a45;
}