 @charset "utf-8";
 
/* =========================================================
  QUICK APPLY
========================================================= */
#oh_quick_apply{
  position: relative;
  overflow: hidden;
  color:#fff;
  padding: 140px 0;
  background: url('../img/main/bg_counseling.jpg') center/cover no-repeat;
}

#oh_quick_apply .oh_inner{
  position:relative;
  z-index:1;
  max-width: 1480px;
  margin:0 auto;
  padding: 0 24px;

  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items:center;
}

/* =========================
  LEFT
========================= */
#oh_quick_apply .oh_left{
  max-width: 560px;
}

#oh_quick_apply .oh_title{
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

#oh_quick_apply .oh_desc{
  font-size: 22px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: #fff;
}
#oh_quick_apply .oh_desc .c1{
  color:#2e87c9;
  font-weight: 700;
}

#oh_quick_apply .oh_note{
  margin: 0 0 50px;
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
}
#oh_quick_apply .oh_note b{ color:#2e87c9; }

/* =========================
   STEPS
========================= */
#oh_quick_apply .oh_steps{
  display:flex;
  align-items:center;              /* ✅ 기준을 아이콘 중앙으로 */
  gap: 10px;
}

/* step */
#oh_quick_apply .oh_step{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
  min-width: 120px;
}

/* 아이콘 */
#oh_quick_apply .oh_step_icon{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,.08);        /* ✅ 비활성 더 어둡게 */
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);

  backdrop-filter: blur(2px);
  transition: all .25s ease;
}

#oh_quick_apply .oh_step_icon i{
  font-size: 36px;
}

/* 활성 */
#oh_quick_apply .oh_step.is-active .oh_step_icon{
  background:#2e87c9;
  border-color: rgba(255,255,255,.25);
  color:#fff;

  /* ✅ 번짐(글로우) 효과 */
  box-shadow:
    0 0 0 6px rgba(20,185,214,.18),
    0 20px 40px rgba(20,185,214,.45);
}

/* 텍스트 */
#oh_quick_apply .oh_step_txt{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-align:center;
}

/* =========================
   STEP LINE (중앙 정렬)
========================= */
#oh_quick_apply .oh_step_line{
  flex: 0 0 50px;
  height: 2px;

  background: rgba(20,185,214,.25);

  /* ✅ 아이콘 정확한 중앙에 위치 */
  margin-top: -24px;   /* 아이콘(84px)의 정확한 중앙 보정 */
}



/* =========================
  RIGHT CARD
========================= */
#oh_quick_apply .oh_right{
  display:flex;
  justify-content:flex-end;
}

#oh_quick_apply .oh_card{
  width: min(620px, 100%);
  background:#fff;
  color:#111;
  border-radius: 18px;
  padding: 44px 44px 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

#oh_quick_apply .oh_card_tit{
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 18px;
  color:#1a1a1a;
}

/* time buttons (2 columns) */
#oh_quick_apply .oh_times{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

#oh_quick_apply .oh_time{
  position:relative;
  cursor:pointer;
  user-select:none;
}

#oh_quick_apply .oh_time input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

#oh_quick_apply .oh_time span{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #d9dee3;
  background:#fff;
  font-weight: 700;
  font-size: 14px;
  color:#333;
  transition: border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}

#oh_quick_apply .oh_time input:checked + span{
  border-color:#2aaed0;
  box-shadow: 0 0 0 3px rgba(42,174,208,.12);
}

/* fields */
#oh_quick_apply .oh_fields{
  display:flex;
  flex-direction:column;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 18px;
}

#oh_quick_apply .oh_label{
  display:block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  color:#222;
}

#oh_quick_apply .oh_input{
  width:100%;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #e6e8ec;
  background:#f3f5f7;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

#oh_quick_apply .oh_input:focus{
  border-color:#2aaed0;
  box-shadow: 0 0 0 3px rgba(42,174,208,.12);
  background:#fff;
}

#oh_quick_apply .oh_agree{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-size: 13px;
  color:#444;
  margin: 6px 0 18px;
}

#oh_quick_apply .oh_agree input{
  width: 16px;
  height: 16px;
}

#oh_quick_apply .oh_submit{
  width:100%;
  height: 58px;
  border: 0;
  border-radius: 10px;
  background:#2e87c9;
  color:#fff;
  font-size: 17px;
  font-weight: 900;
  cursor:pointer;
  transition: filter .15s ease, transform .15s ease;
}
#oh_quick_apply .oh_submit:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 1200px){
  #oh_quick_apply{ padding: 80px 0; }
  #oh_quick_apply .oh_inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  #oh_quick_apply .oh_left{
    max-width: none;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:50px;
  }
  #oh_quick_apply .oh_right{
    justify-content:center;
  }
  #oh_quick_apply .oh_card{
    width: 100%;
    max-width: 720px;
  }
}

@media (max-width: 768px){
  #oh_quick_apply{ padding: 60px 0; }
  #oh_quick_apply .oh_inner{ padding: 0 18px; }

  #oh_quick_apply .oh_title{ font-size: 34px; }
  #oh_quick_apply .oh_desc{ font-size: 16px; }
  #oh_quick_apply .oh_note{ font-size: 14px; margin-bottom: 26px; }
	
	
  #oh_quick_apply .oh_steps{
    gap: 0;                 /* 라인이 담당 */
    flex-wrap: nowrap;      /* ✅ 줄바꿈 금지 */
    justify-content: center;
    align-items: center;
  }

  #oh_quick_apply .oh_step{
    min-width: 0;           /* ✅ 고정폭 제거 */
    width: auto;
    flex: 0 0 auto;
  }

  #oh_quick_apply .oh_step_icon{
    width: 70px;
    height: 70px;
  }
  #oh_quick_apply .oh_step_icon i{ font-size: 30px; }

  #oh_quick_apply .oh_step_txt{
    font-size: 13px;
    white-space: nowrap;    /* ✅ 줄바꿈 방지 */
  }

  /* ✅ 라인: 아이콘 중앙에 정확히 */
  #oh_quick_apply .oh_step_line{
    flex: 0 0 34px;         /* 모바일 라인 길이 */
    height: 2px;
    margin: 0 10px;         /* step과 여백 */
    background: rgba(255,255,255,.16);

    /* ✅ 아이콘(70px)의 중앙에 위치 */
    margin-top: -24px;      /* 텍스트 때문에 내려가는 것 보정 */
  }

  /* ✅ 마지막 라인 제거(혹시 DOM상 남아있을 경우 대비) */
  #oh_quick_apply .oh_steps .oh_step_line:last-child{
    display:none;
  }

  #oh_quick_apply .oh_card{
    padding: 28px 18px 20px;
    border-radius: 16px;
  }

  /* 모바일: 시간 버튼 1열 */
  #oh_quick_apply .oh_times{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #oh_quick_apply .oh_submit{
    height: 54px;
    font-size: 16px;
  }
}

@media (max-width: 420px){
  #oh_quick_apply .oh_title{ font-size: 30px; }
  
    #oh_quick_apply .oh_step_icon{
		width: 64px;
		height: 64px;
	  }
	  #oh_quick_apply .oh_step_icon i{ font-size: 28px; }

	  #oh_quick_apply .oh_step_line{
		flex-basis: 26px;
		margin: 0 8px;
		margin-top: -22px;
	  }

	  #oh_quick_apply .oh_step_txt{
		font-size: 12px;
	  }
}



/* ===== 하단 퀵바 ===== */
.quick-bar-bottom{
  position:fixed; left:0; right:0; bottom:0;
  background:url('../img/common/ft_bt_bg.jpg') center center no-repeat;
  background-size:cover;
  z-index:100;
  height:92px;              /* ✅ 높이 업 */
  padding:0;
  font-weight:600;
}

/* 내부 */
.qb-inner{
  max-width:1600px;
  height:100%;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  gap:18px;
  box-sizing:border-box;
}

/* =========================
   QUICK BAR - LEFT ONLY (override)
========================= */

/* 좌측 전체: 프로필 + 전화 + 카톡 */
.quick-bar-bottom .qb-left{
  display:flex;
  align-items:center;
  gap:26px;
  min-width:auto;
  position:relative;
}

/* 프로필 블록 */
.quick-bar-bottom .qb-profile{
  position:relative;
  display:flex;
  align-items:center;
  min-height:92px;              /* 바 높이 */
  padding-left:150px;           /* ✅ 큰 이미지 자리 */
  padding-right:26px;
  margin-right:6px;
}

/* ✅ 인물 이미지: 크게 + 위로 튀어나오게 */
.quick-bar-bottom .qb-profile img{
  position:absolute;
  left:0;
  bottom:-50px;                    /* ✅ 바 하단에 붙음 */
  width:200px;                 /* ✅ 크기 (조절 가능) */
  height:auto;
  object-fit:cover;
  object-position:center top;
  z-index:10;

  transform:translateY(-40px); /* ✅ 위로 벗어나게(조절 포인트) */
}

/* 프로필 텍스트 */
.quick-bar-bottom .qb-profile-txt{
  position:relative;
  z-index:11;                  /* ✅ 이미지보다 위 */
  margin-left:-22px;           /* ✅ 이미지 쪽으로 겹치기 */
  padding:10px 14px;
}

.quick-bar-bottom .qb-rank{
  font-size:18px;
  font-weight:700;
  color:#fff;
  opacity:.95;
}
.quick-bar-bottom .qb-name{
  font-size:14px;
  color:#fff;
  text-align:center;
}

/* ===== 전화(새 스타일) ===== */
.quick-bar-bottom .qb-tel2{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#fff;
  white-space:nowrap;
}
.quick-bar-bottom .qb-tel2 i{
  font-size:34px;
  opacity:.95;
}
.quick-bar-bottom .qb-tel2-txt{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.quick-bar-bottom .qb-tel2 .t1{
  font-size:13px;
  font-weight:600;
  opacity:.9;
}
.quick-bar-bottom .qb-tel2 .t2{
  font-size:28px;
  font-weight:900;
  letter-spacing:-0.5px;
}

/* ===== 카톡(뱃지형) ===== */
/* 카톡: xi 아이콘 버전 */
.quick-bar-bottom .qb-kakao2{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  white-space:nowrap;
}

.quick-bar-bottom .qb-kakao2 i{
  font-size:34px;          /* ✅ 톡 아이콘 크기 */
  line-height:1;
}

.quick-bar-bottom .qb-kakao2 .kakao-txt{
  font-size:18px;
  font-weight:800;
}

/* 호버(좌측만) */
.quick-bar-bottom .qb-tel2:hover,
.quick-bar-bottom .qb-kakao2:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
  transition:transform .2s ease, filter .2s ease;
}


/* ===== 가운데 타이틀 ===== */
.qb-mid{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.qb-title{
  color:#fff;
  font-size:16px;     /* ✅ 업 */
  font-weight:900;
  opacity:.95;
  white-space:nowrap;
}

/* ===== 우측 폼 ===== */
.consult-form{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}

/* ✅ 입력폼 크게 */
.consult-form input[type="text"],
.consult-form input[type="tel"]{
  height:42px;          /* ✅ 업 */
  width:190px;          /* ✅ 업 */
  padding:0 14px;
  border-radius:8px;
  border:0;
  background:#fff;
  color:#111;
  font-size:14px;       /* ✅ 업 */
  outline:none;
}
.consult-form input::placeholder{ color:#9aa4ad; }

/* ✅ 동의 영역 약간 크게 */
.agree{
  display:flex;
  align-items:center;
  gap:8px;
  color:#eaf6ff;
  font-size:12px;       /* ✅ 업 */
  line-height:1.1;
  user-select:none;
  white-space:nowrap;
}
.agree input{
  width:18px; height:18px;  /* ✅ 업 */
  accent-color:#ffffff;
}
.agree span{ display:block; opacity:.95; }

/* ✅ 버튼 크게 */
.quick-bar-bottom .quick-bar-bottom-btn{
  height:46px;           /* ✅ 업 */
  min-width:150px;       /* ✅ 업 */
  padding:0 20px;
  border:0;
  border-radius:10px;
  background:#2e87c9;    /* 우측 톤에 맞춤 */
  color:#fff;
  font-size:14px;        /* ✅ 업 */
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(0,0,0,.20);
}
.quick-bar-bottom .quick-bar-bottom-btn:hover{ filter:brightness(1.06); }


@media (max-width:1480px){
	.qb-left{
	  min-width:auto;
	}

}

/* 모바일은 기존처럼 숨김 */
@media (max-width:1180px){
  .quick-bar-bottom{ display:none; }
}




#counsel_result { display:none; position:fixed; top:0; left:0; width:100%; height:100%; z-index:999; }
#counsel_result.active { display:block; }
#counsel_result .bg  { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.55);}
#counsel_result .msg_box { position:absolute; top:50%; left:50%; width:600px; padding:30px; background:#4a5860; border:2px solid #fff; border-radius:15px; transform:translate(-50%, -50%); z-index:9; }
#counsel_result .msg_box h2 { text-align:center; font-size:35px; margin-bottom:30px; color:#fff;}
#counsel_result .msg_box .result_msg { font-size:20px; line-height:1.5; text-align:center;  color:#fff;}
#counsel_result .msg_close { text-align:center; margin-top:20px; }
#counsel_result .msg_close a { display:inline-block; background:#fff; color:#4a5860; border-radius:15px; font-size:20px; font-weight:700; padding:10px 30px; }
@media(max-width:680px){	
	#counsel_result .msg_box { width:300px; padding:10px;  }
	#counsel_result .msg_box h2 { font-size:22px; margin-bottom:20px; }
	#counsel_result .msg_box .result_msg { font-size:14px; }
	#counsel_result .msg_close a { border-radius:10px; font-size:14px; padding:10px 20px; }
}
