/* ============================================================
   Kontakt page — contact.css
   vejretodense.com
   ============================================================ */

.kontakt-hero {
  background: linear-gradient(170deg, #8c1d22 0%, #6e181c 40%, #0f172a 75%, #0b1120 100%);
  padding: 48px 28px 56px;
  position: relative;
  overflow: hidden;
}
.kontakt-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(90deg, transparent 18%, rgba(255,255,255,0.03) 18%, rgba(255,255,255,0.03) 22%, transparent 22%),
    linear-gradient(180deg, transparent 35%, rgba(255,255,255,0.02) 35%, rgba(255,255,255,0.02) 45%, transparent 45%);
  pointer-events: none;
}
.kontakt-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.kontakt-hero .k-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}
.kontakt-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 12px;
}
.kontakt-hero .k-desc {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.kontakt-body {
  max-width: 900px;
  margin: -32px auto 0;
  padding: 0 28px 64px;
  position: relative;
  z-index: 2;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

/* Form card */
.k-form-card {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06), 0 0 0 1px rgba(15,23,42,0.03);
}
.k-form-card .k-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.k-form-card .k-card-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}

.k-field {
  margin-bottom: 20px;
}
.k-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.k-field label .req {
  color: #c2302e;
  margin-left: 2px;
}
.k-field input,
.k-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.k-field input:focus,
.k-field textarea:focus {
  border-color: #b7242a;
  box-shadow: 0 0 0 3px rgba(183,36,42,0.08);
  background: #fff;
}
.k-field input::placeholder,
.k-field textarea::placeholder {
  color: #94a3b8;
}
.k-field textarea {
  min-height: 140px;
  resize: vertical;
}

.k-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #b7242a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(183,36,42,0.2);
}
.k-submit:hover {
  background: #9e1f24;
}
.k-submit:active {
  transform: scale(0.98);
}
.k-submit svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
}

/* Info sidebar */
.k-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.k-info-card {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 0 0 1px rgba(15,23,42,0.03);
}
.k-info-card .k-ic-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 18px;
}
.k-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.k-info-item:last-child {
  margin-bottom: 0;
}
.k-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.k-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #64748b;
  fill: none;
}
.k-info-text .k-it-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 2px;
}
.k-info-text .k-it-val {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.k-info-text .k-it-val a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s;
}
.k-info-text .k-it-val a:hover {
  color: #b7242a;
}

/* FAQ card */
.k-faq-item {
  border-bottom: 1px solid #f0f3f7;
  padding: 14px 0;
}
.k-faq-item:first-child { padding-top: 0; }
.k-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.k-faq-q {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.k-faq-a {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}
.k-faq-a a {
  color: #0284c7;
  text-decoration: none;
}
.k-faq-a a:hover { text-decoration: underline; }

/* Data source card */
.k-source-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.k-source-card .k-sc-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.k-source-card .k-sc-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.k-source-card .k-sc-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-hero h1 { font-size: 28px; }
  .k-form-card { padding: 24px; }
}
