/* ============================================================
   FalPerest — support.css
   ============================================================ */

/* ── Nav support button ── */
.nav-support-btn {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 6px 16px;
  border-radius: 99px;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.nav-support-btn:hover {
  box-shadow: 0 0 16px rgba(255,214,0,0.45);
  transform: translateY(-1px);
  color: var(--bg-dark) !important;
}

/* ── Breadcrumb ── */
.breadcrumb-bar {
  position: relative;
  z-index: 2;
  padding: 88px 0 0;
}
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  font-size: 13px;
}
.breadcrumb a {
  color: var(--lavender);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li { color: rgba(255,255,255,0.5); }
.bc-sep { color: rgba(255,255,255,0.25); }

/* ── Support Hero ── */
.sup-hero {
  position: relative;
  z-index: 2;
  padding: 48px 0 80px;
  text-align: center;
  overflow: hidden;
}
.sup-hero-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(140,77,242,0.18), transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.sup-hero-inner { position: relative; z-index: 2; }
.sup-hero-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 24px rgba(255,214,0,0.4));
  animation: float 4s ease-in-out infinite;
}
.sup-hero-title {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.sup-hero-sub {
  font-size: 17px;
  color: var(--lavender);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Section title (support) ── */
.sup-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

/* ── Quick Topics ── */
.sup-topics {
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.topic-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font);
}
.topic-card:hover,
.topic-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255,214,0,0.4);
  box-shadow: 0 16px 40px rgba(255,214,0,0.08);
  outline: none;
}
.topic-card.selected {
  border-color: var(--gold);
  background: rgba(255,214,0,0.08);
  box-shadow: 0 0 32px rgba(255,214,0,0.15);
}
.topic-emoji { font-size: 28px; margin-bottom: 4px; }
.topic-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.topic-desc {
  font-size: 12px;
  color: var(--lavender);
  line-height: 1.4;
}

/* ── Contact Form Section ── */
.sup-form-section {
  padding: 0 0 100px;
  position: relative;
  z-index: 2;
}
.sup-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.sup-form-left { padding-top: 8px; }
.sup-form-desc {
  font-size: 15px;
  color: var(--lavender);
  line-height: 1.7;
  margin-bottom: 36px;
}
.sup-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sci-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sci-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.sci-val {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
a.sci-val:hover { color: var(--gold); }

/* ── Form ── */
.sup-form-right {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(12px);
}
.support-form { display: flex; flex-direction: column; gap: 22px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.req { color: var(--gold); }
.form-opt {
  font-weight: 400;
  color: var(--lavender);
  font-size: 12px;
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: #fff;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
  border-color: rgba(255,214,0,0.5);
  box-shadow: 0 0 0 3px rgba(255,214,0,0.08);
}
.form-input.error {
  border-color: rgba(255,80,80,0.6);
  box-shadow: 0 0 0 3px rgba(255,80,80,0.08);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Select */
.select-wrap { position: relative; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.form-select option {
  background: #1C0E45;
  color: #fff;
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lavender);
  pointer-events: none;
  font-size: 14px;
}

/* Textarea footer */
.textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.char-counter {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums;
}

/* Checkbox */
.form-check-group {}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--lavender);
  line-height: 1.5;
}
.form-check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Error messages */
.form-err {
  font-size: 12px;
  color: #ff6b6b;
  min-height: 16px;
  display: block;
}

/* Submit button */
.sup-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--amber), var(--gold-dark));
  color: var(--bg-dark);
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font);
  padding: 15px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 8px 28px rgba(255,214,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.sup-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,214,0,0.4);
}
.sup-submit-btn:active { transform: translateY(0); }
.btn-icon { font-size: 18px; }
.btn-arrow { font-size: 18px; }

.form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: center;
}
.form-note strong { color: rgba(255,255,255,0.5); }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.success-icon { font-size: 56px; }
.success-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.success-desc { font-size: 14px; color: var(--lavender); line-height: 1.6; }

/* ── FAQ ── */
.sup-faq {
  padding: 0 0 100px;
  position: relative;
  z-index: 2;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(255,214,0,0.3);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-arrow {
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--lavender);
}
.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}
.faq-a {
  padding: 0 22px 18px;
  animation: fadeSlide 0.25s ease;
}
.faq-a p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Direct Email CTA ── */
.sup-direct {
  padding: 0 0 100px;
  position: relative;
  z-index: 2;
}
.direct-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(140,77,242,0.12), rgba(89,26,166,0.08));
  border: 1px solid rgba(140,77,242,0.3);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.direct-icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mystic-purple), var(--deep-purple));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(140,77,242,0.3);
}
.direct-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.direct-desc {
  font-size: 14px;
  color: var(--lavender);
  margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sup-form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .sup-form-left { padding-top: 0; }
}
@media (max-width: 600px) {
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .sup-form-right { padding: 24px 18px; }
  .direct-card { flex-direction: column; text-align: center; padding: 28px 20px; }
  .direct-icon { margin: 0 auto; }
}
@media (max-width: 400px) {
  .topics-grid { grid-template-columns: 1fr; }
}
