/* contact-v2-styles.css — Page contact V2 */
/* Nav + footer : home-v2.css */

:root {
  --red: #D01F3C;
  --ink: #1a1a2e;
  --muted: #74748a;
  --border: #eaeaf2;
  --off: #f6f6fa;
}

/* BREADCRUMB */
.ct-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 13px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.ct-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .15s; }
.ct-breadcrumb a:hover { color: var(--ink); }
.ct-breadcrumb .sep { color: #c0c0d0; font-size: 12px; }
.ct-breadcrumb .cur { color: var(--ink); font-weight: 600; }

/* PAGE */
.ct-wrap { max-width: 760px; margin: 48px auto; padding: 0 32px 96px; }

.ct-header { margin-bottom: 32px; }
.ct-title { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--ink); margin-bottom: 6px; }
.ct-subtitle { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* FORM CARD */
.ct-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

/* FORM */
.ct-form { display: flex; flex-direction: column; gap: 20px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-form-group { display: flex; flex-direction: column; gap: 6px; }
.ct-form-group label { font-size: 12.5px; font-weight: 600; color: var(--ink); }

.ct-form-group input,
.ct-form-group textarea,
.ct-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.ct-form-group input:focus,
.ct-form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(208,31,60,.08); }
.ct-form-group input.error,
.ct-form-group textarea.error { border-color: var(--red); }
.ct-form-group textarea { resize: vertical; min-height: 120px; }

/* CAPTCHA */
.ct-captcha-wrap { margin: 4px 0; }
.ct-captcha-error {
  font-size: 12px; color: var(--red); margin-top: 4px; display: none;
}

/* ERROR MSG */
.ct-error-msg {
  background: #fff0f2;
  border: 1px solid rgba(208,31,60,.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--red);
  display: none;
}

/* SUBMIT */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  cursor: pointer;
  transition: background .18s, transform .1s;
  width: 100%;
}
.ct-btn:hover { background: #b01830; }
.ct-btn:active { transform: scale(.98); }
.ct-btn:disabled { opacity: .6; cursor: not-allowed; }

/* CONFIRMATION */
.ct-confirm {
  text-align: center;
  padding: 48px 32px;
}
.ct-confirm-icon {
  width: 72px; height: 72px;
  background: #fff0f2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--red);
  margin: 0 auto 24px;
}
.ct-confirm-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: var(--ink);
  margin-bottom: 12px;
}
.ct-confirm-text { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 440px; margin: 0 auto 28px; }
.ct-confirm-back {
  display: inline-block;
  background: var(--red); color: #fff;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  padding: 11px 28px;
  text-decoration: none;
  transition: background .18s;
}
.ct-confirm-back:hover { background: #b01830; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ct-breadcrumb { padding: 12px 24px; }
  .ct-wrap { padding: 0 24px 72px; }
}
@media (max-width: 768px) {
  .ct-breadcrumb { padding: 10px 16px; font-size: 12px; }
  .ct-wrap { margin: 28px auto; padding: 0 16px 56px; }
  .ct-title { font-size: 22px; }
  .ct-card { padding: 28px 20px; }
  .ct-form-row { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .ct-wrap { padding: 0 12px 48px; }
}
