@charset "UTF-8";

/*
 * Seoul EL Dental shared UI refresh
 * Header / desktop quick menu / bottom consultation bar
 */

:root {
  --se-el-navy: #062d58;
  --se-el-blue: #0878e5;
  --se-el-cyan: #00baf2;
  --se-el-pale: #eef8ff;
  --se-el-line: rgba(9, 94, 165, 0.16);
  --se-el-shadow: 0 18px 55px rgba(3, 41, 82, 0.16);
}

.se-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header */
#header {
  top: 0;
  padding: 14px 24px 0;
}

#header .header,
#header.on .header {
  padding: 0 !important;
  background: transparent !important;
}

#header .header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px;
  min-height: 76px;
  max-width: 1580px !important;
  padding: 0 26px !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(4, 39, 75, 0.42), rgba(5, 69, 124, 0.18));
  box-shadow: 0 16px 50px rgba(1, 28, 56, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

#header.on .header .container {
  border-color: var(--se-el-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--se-el-shadow);
}

#header .header .logo {
  flex: 0 0 auto;
  float: none !important;
  margin: 0 38px 0 0 !important;
  padding: 0 !important;
}

#header .header .logo img {
  display: block;
  width: auto !important;
  height: 42px;
}

#header .header #menu {
  flex: 1 1 auto;
  float: none !important;
  width: auto !important;
  padding-right: 0 !important;
}

#header .header #menu > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  gap: clamp(4px, 0.65vw, 14px);
}

#header .header #menu .menu {
  float: none !important;
  width: auto !important;
}

#header .header #menu .depth01 {
  margin: 0 !important;
  padding: 29px clamp(10px, 0.85vw, 18px) !important;
  color: #fff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

#header.on .header #menu .depth01 {
  color: #173654 !important;
}

#header .header #menu .depth01::before {
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  margin: 0;
  border-radius: 2px;
  background: var(--se-el-cyan);
  transform: translateX(-50%);
}

#header .header #menu .depth01:hover,
#header .header #menu .depth01:focus,
#header .header #menu .depth01.on {
  color: #73ddff !important;
}

#header.on .header #menu .depth01:hover,
#header.on .header #menu .depth01:focus,
#header.on .header #menu .depth01.on {
  color: var(--se-el-blue) !important;
}

#header .header #menu .depth01:hover::before,
#header .header #menu .depth01:focus::before,
#header .header #menu .depth01.on::before {
  width: calc(100% - 28px);
}

#header .header #menu .depth02 {
  top: calc(100% + 10px) !important;
  width: 220px !important;
  height: auto !important;
  padding: 8px !important;
  overflow: hidden;
  border: 1px solid var(--se-el-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 55px rgba(3, 41, 82, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

#header .header #menu .depth02 > li > a {
  padding: 12px 14px !important;
  border-radius: 10px;
  color: #24445f;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

#header .header #menu .depth02 > li > a::before {
  display: none;
}

#header .header #menu .depth02 > li > a:hover,
#header .header #menu .depth02 > li > a:focus {
  background: var(--se-el-pale);
  color: var(--se-el-blue);
}

.se-header-contact {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 118px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--se-el-blue), var(--se-el-cyan));
  box-shadow: 0 10px 24px rgba(0, 121, 224, 0.26);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

#header.on .se-header-contact {
  background: linear-gradient(135deg, var(--se-el-blue), var(--se-el-cyan));
  color: #fff;
}

#header .header .menu_btn {
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

#header.on .header .menu_btn {
  border-color: var(--se-el-line);
  background: var(--se-el-pale);
}

#header .header .menu_btn img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

#header .m_menu {
  width: min(420px, 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, #083d73 0%, #062d58 55%, #041f3d 100%) !important;
  box-shadow: -28px 0 70px rgba(0, 22, 46, 0.28);
}

#header .m_menu .m_menu_header {
  height: auto;
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#header .m_menu .m_menu_header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 18px 26px;
}

#header .m_menu .m_logo {
  left: auto;
  visibility: visible !important;
  transform: none;
}

#header .m_menu .m_logo img {
  height: 42px;
}

#header .m_menu .m_menu_close {
  position: relative;
  top: auto;
  right: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  transform: none;
}

#header .m_menu .m_menu_close span {
  left: 11px;
  width: 20px;
  background: #fff;
}

#header #lnb {
  height: calc(100% - 92px);
  padding: 18px 18px 30px;
  overflow-y: auto;
}

#header #lnb .menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header #lnb .depth01 {
  padding: 19px 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

#header #lnb .depth02 {
  margin: 0 0 12px;
  padding: 8px !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08) !important;
}

#header #lnb .depth02 li a {
  padding: 11px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

#header #lnb .depth02 li a:hover,
#header #lnb .depth02 li a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Desktop quick menu */
.quickn.se-quick-menu {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 4990;
  display: block;
  transform: translateY(-50%);
}

.se-quick-menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(9, 94, 165, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 55px rgba(3, 41, 82, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.se-quick-menu li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.se-quick-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 64px;
  min-height: 60px;
  padding: 7px 4px;
  border-radius: 17px;
  color: #43627a;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.se-quick-menu__item svg {
  width: 23px;
  height: 23px;
  color: var(--se-el-blue);
  transition: transform 0.2s ease;
}

.se-quick-menu__item span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.se-quick-menu__item:hover,
.se-quick-menu__item:focus-visible {
  background: linear-gradient(145deg, var(--se-el-blue), #0866c8);
  color: #fff;
  outline: none;
}

.se-quick-menu__item:hover svg,
.se-quick-menu__item:focus-visible svg {
  color: #fff;
  transform: scale(1.06);
}

.se-quick-menu__item--top {
  min-height: 46px;
  margin-top: 3px;
  border-top: 1px solid var(--se-el-line);
  border-radius: 0 0 16px 16px;
}

.se-quick-menu__item--top svg {
  width: 18px;
  height: 18px;
}

/* Bottom consultation bar */
.form-bottom {
  position: fixed;
  right: auto;
  bottom: 18px;
  left: 50%;
  z-index: 4995;
  display: block;
  width: min(1480px, calc(100% - 48px));
  height: auto;
  padding: 12px;
  color: #fff;
  background: linear-gradient(120deg, rgba(5, 38, 73, 0.97), rgba(6, 67, 118, 0.95));
  border: 1px solid rgba(103, 210, 255, 0.24);
  border-radius: 24px;
  box-shadow: 0 22px 65px rgba(0, 27, 57, 0.32);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 40px));
  transition: opacity .32s ease, transform .48s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .48s;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.form-bottom.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.form-bottom .inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.form-bottom form {
  width: 100%;
}

.form-bottom__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.form-bottom__intro {
  padding: 2px 18px 2px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.form-bottom__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #7be1ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.form-bottom__intro strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.new_form_area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.form-bottom .area-com {
  display: grid;
  grid-template-columns: repeat(3, minmax(135px, 1fr));
  gap: 8px;
  margin: 0;
}

.form-bottom dl,
.form-bottom dd {
  margin: 0;
}

.form-bottom input[type="text"],
.form-bottom select {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-bottom input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.form-bottom select {
  color: rgba(255, 255, 255, 0.82);
}

.form-bottom select option {
  background: #fff;
  color: #173654;
}

.form-bottom input[type="text"]:focus,
.form-bottom select:focus {
  border-color: rgba(105, 220, 255, 0.75);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 3px rgba(0, 186, 242, 0.14);
}

.form-bottom .area-submit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-bottom .area_subtext {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.form-bottom .info-agree {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.form-bottom .info-agree input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--se-el-cyan);
}

.form-bottom .info-number {
  color: #8ee6ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.form-bottom .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  min-width: 156px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--se-el-cyan), var(--se-el-blue));
  box-shadow: 0 10px 25px rgba(0, 121, 224, 0.28);
  color: #fff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-bottom .btn-submit::after {
  content: "→";
  margin-left: 8px;
  font-size: 17px;
}

.form-bottom .btn-submit:hover,
.form-bottom .btn-submit:focus-visible {
  box-shadow: 0 14px 30px rgba(0, 121, 224, 0.38);
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 1600px) {
  #header {
    padding: 12px 18px 0;
  }

  #header .header .container {
    min-height: 68px;
    padding: 0 18px !important;
  }

  #header .header .logo {
    margin: 0 auto !important;
  }

  #header .header .logo img {
    height: 42px;
  }

  #header .header .menu_btn.visible-xl {
    display: flex !important;
    position: static !important;
  }

  .se-header-contact {
    display: none;
  }
}

@media (max-width: 1280px) {
  .quickn.se-quick-menu {
    display: none !important;
  }

  .form-bottom__layout {
    grid-template-columns: 185px minmax(0, 1fr);
  }

  .form-bottom__intro strong {
    font-size: 17px;
  }

  .form-bottom__intro a {
    font-size: 11px;
  }

  .form-bottom .btn-submit {
    width: 132px;
    min-width: 132px;
  }
}

@media (max-width: 1024px) {
  .form-bottom {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 19px;
  }

  .form-bottom__layout {
    display: block;
  }

  .form-bottom__intro {
    display: none;
  }

  .new_form_area {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .form-bottom .area-submit {
    gap: 9px;
  }

  .form-bottom .info-number {
    display: none;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 8px 10px 0;
  }

  #header .header .container {
    min-height: 60px;
    padding: 0 5px 0 16px !important;
    border-radius: 17px;
  }

  #header .header .logo {
    margin: 0 auto 0 0 !important;
  }

  #header .header .logo img {
    height: 36px !important;
  }

  #header .header .menu_btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    transform: translateX(14px);
  }

  #header .header .menu_btn img {
    width: 21px;
    height: 21px;
  }

  #header .m_menu .m_menu_header_wrapper {
    min-height: 78px;
    padding: 14px 18px;
  }

  #header .m_menu .m_logo img {
    height: 36px;
  }

  #header #lnb {
    height: calc(100% - 78px);
    padding: 12px 14px 24px;
  }

  #header #lnb .depth01 {
    padding: 17px 10px;
    font-size: 17px;
  }

  .new_form_area {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-bottom .area-submit {
    justify-content: space-between;
  }

  .form-bottom .area_subtext {
    min-width: 0;
  }

  .form-bottom .btn-submit {
    width: 38%;
    min-width: 122px;
  }

  #kingstemLanding .ks-mobile-bar {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .form-bottom {
    bottom: 6px;
    width: calc(100% - 12px);
    padding: 7px;
    border-radius: 16px;
  }

  .form-bottom .area-com {
    grid-template-columns: 0.8fr 1.15fr 1.15fr;
    gap: 5px;
  }

  .form-bottom input[type="text"],
  .form-bottom select {
    height: 42px;
    padding: 0 9px;
    border-radius: 11px;
    font-size: 14px;
  }

  .form-bottom .area-submit {
    gap: 7px;
  }

  .form-bottom .info-agree {
    gap: 4px;
    font-size: 11px;
    white-space: normal;
  }

  .form-bottom .info-agree input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
  }

  .form-bottom .btn-submit {
    width: 128px;
    min-width: 128px;
    height: 42px;
    padding: 0 12px;
    border-radius: 11px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .se-quick-menu__item,
  .se-quick-menu__item svg,
  .form-bottom,
  .form-bottom .btn-submit {
    transition: none;
  }
}
