/* Joy Mongolia Travel - Inquiry Landing (simple) */
:root{
  --bg: #a9d8ff;          /* sky blue */
  --card: #ffffff;
  --notice: #ffe14a;      /* warm yellow */
  --text: #0b0b0b;
  --muted: rgba(0,0,0,.55);
  --field: #efefef;
  --fieldBorder: rgba(0,0,0,.08);
  --shadow: 0 18px 40px rgba(0,0,0,.12);
  --radius: 14px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.wrap{
  min-height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px 18px;
}

.card{
  width: min(980px, 100%);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px 40px 22px;
}

.title{
  margin: 0 0 22px;
  text-align:center;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.02em;
  font-weight: 900;
}

.notice{
  background: var(--notice);
  border-radius: 10px;
  padding: 18px 16px;
  text-align:center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 28px;
}

.form{ width: 100%; }

.grid{
  display:grid;
  gap: 18px 22px;
}
.grid--2{
  grid-template-columns: 1fr 1fr;
}

.field label{
  display:block;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}

.field input,
.field textarea{
  width:100%;
  background: var(--field);
  border: 1px solid var(--fieldBorder);
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 16px;
  outline: none;
}

.field textarea{
  resize: vertical;
  min-height: 170px;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(0,0,0,.18);
  background: #f3f3f3;
}

.actions{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 16px;
}

.btn{
  border: none;
  background: var(--notice);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  min-width: 160px;
}

.btn:disabled{
  opacity: .75;
  cursor: not-allowed;
}

.hint{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

.error{
  margin-top: 18px;
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 64, 64, .10);
  border: 1px solid rgba(255, 64, 64, .25);
}

.error__title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.error__msg{
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,.8);
}

.footer{
  margin-top: 18px;
  text-align:center;
  color: var(--muted);
  font-size: 12px;
}

/* Honeypot */
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}

/* Responsive */
@media (max-width: 760px){
  .card{ padding: 34px 18px 18px; }
  .grid--2{ grid-template-columns: 1fr; }
  .notice{ font-size: 16px; }
  .actions{ flex-direction: column; align-items: flex-start; }
  .btn{ width: 100%; }
}
