/* ── KONTAKT — PREMIUM PAGE ── */

.contact-page { background: var(--bg-page); }

/* Unified white panel */
.contact-shell {
  max-width: 1320px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.contact-shell > * {
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.contact-shell > *:first-child {
  border-top: 1px solid var(--border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.contact-shell > *:last-child {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.contact-shell > *:only-child {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-hero {
  padding: 40px 40px 36px;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(243, 238, 228, .35) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; top: -25%; right: -8%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,150,143,.1) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute; bottom: -35%; left: -12%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.06) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: end;
}
.contact-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-light); border: 1px solid var(--brand);
  border-radius: 999px; padding: 6px 16px;
  font-size: .78rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 18px;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 800; letter-spacing: -1.4px; line-height: 1.1;
  margin-bottom: 16px;
}
.contact-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand) 0%, #2d7a73 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-hero-lead {
  font-size: 1.06rem; color: var(--text-mid); line-height: 1.75; max-width: 520px;
}
.contact-hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contact-hero-stat {
  background: transparent;
  border: none; border-radius: 0;
  border-right: 1px solid var(--border);
  padding: 18px 20px;
  transition: background .25s;
}
.contact-hero-stat:last-child { border-right: none; }
.contact-hero-stat:hover {
  background: rgba(60, 150, 143, .06);
  box-shadow: none;
}
.contact-hero-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 800; color: var(--brand);
  letter-spacing: -.8px; line-height: 1;
}
.contact-hero-stat span { font-size: .76rem; color: var(--text-soft); margin-top: 5px; display: block; }

/* Main layout */
.contact-main {
  padding: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.contact-main-inner {
  max-width: none; margin: 0;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 0;
  align-items: stretch;
}
.contact-main-inner > aside {
  padding: 40px;
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(243, 238, 228, .25) 0%, var(--surface) 100%);
}
.contact-main-inner > .contact-form-wrap {
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin: 0;
}

/* Info column */
.contact-info-stack {
  display: flex; flex-direction: column; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px;
  background: transparent;
  border: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card:hover {
  background: rgba(60, 150, 143, .05);
  box-shadow: none;
  transform: none;
}
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-page);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.contact-info-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .7px; color: var(--text-soft); margin-bottom: 4px;
}
.contact-info-value {
  font-size: .92rem; font-weight: 600; color: var(--text-dark); line-height: 1.4;
}
.contact-info-value a {
  color: var(--brand); text-decoration: none; transition: color .2s;
}
.contact-info-value a:hover { color: var(--brand-dark); }

.contact-quick-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px;
}
.contact-quick-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 600; text-decoration: none;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-mid);
  transition: all .25s ease;
}
.contact-quick-btn:hover { border-color: var(--brand); color: var(--brand); }
.contact-quick-btn--wa {
  background: #25d366; border-color: #25d366; color: #fff;
}
.contact-quick-btn--wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

.contact-cta-box {
  margin-top: 8px; padding: 24px;
  background: linear-gradient(135deg, var(--brand) 0%, #2d7a73 100%);
  border-radius: var(--radius-lg); color: #fff;
  position: relative; overflow: hidden;
}
.contact-cta-box::after {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.08); pointer-events: none;
}
.contact-cta-box h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.contact-cta-box p {
  font-size: .86rem; opacity: .9; line-height: 1.65;
  position: relative; z-index: 1;
}
.contact-cta-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
  position: relative; z-index: 1;
}
.contact-cta-tag {
  font-size: .72rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
}

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: none;
  border-radius: 0;
  padding: 40px 40px 44px;
  box-shadow: none;
  position: relative; overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand), #2d7a73, var(--accent));
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 800; letter-spacing: -.5px; margin-bottom: 6px;
}
.contact-form-header p { font-size: .88rem; color: var(--text-soft); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-field { display: flex; flex-direction: column; gap: 7px; }
.contact-field--full { grid-column: 1 / -1; }

.contact-field label {
  font-size: .78rem; font-weight: 600; color: var(--text-mid);
  display: flex; align-items: center; gap: 4px;
}
.contact-field label .req { color: var(--brand); }

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: var(--font-body); color: var(--text-dark);
  background: var(--surface-2); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #9ab5b3; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--brand); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(60,150,143,.12);
}
.contact-field select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b8c8a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.contact-field textarea { resize: vertical; min-height: 120px; }

/* Employee pills */
.contact-pills-label {
  font-size: .78rem; font-weight: 600; color: var(--text-mid); margin-bottom: 10px;
}
.contact-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.contact-pill {
  padding: 9px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--surface-2);
  color: var(--text-mid); transition: all .2s ease;
  font-family: var(--font-body);
}
.contact-pill:hover { border-color: var(--brand); color: var(--brand); }
.contact-pill.active {
  background: var(--brand); border-color: var(--brand); color: #fff;
  box-shadow: 0 4px 14px rgba(60,150,143,.3);
}

.contact-form-footer {
  display: flex; flex-direction: column; gap: 14px; margin-top: 4px;
}
.contact-form-note {
  font-size: .76rem; color: var(--text-soft); line-height: 1.55;
}
.contact-form-note a { color: var(--brand); }

.contact-submit {
  width: 100%; padding: 15px 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--brand); color: #fff; border: none;
  border-radius: 999px; font-size: .95rem; font-weight: 700;
  font-family: var(--font-body); cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.contact-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(60,150,143,.35);
}
.contact-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.contact-submit.success { background: #22c55e !important; }
.contact-submit.error { background: #ef4444 !important; }
.contact-honeypot { display: none !important; }

/* Map */
.contact-map-section {
  padding: 40px;
  background: var(--surface);
}
.contact-map-inner { max-width: none; margin: 0; }
.contact-map-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
.contact-map-header h2 {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 800; letter-spacing: -.6px;
}
.contact-map-header p { font-size: .9rem; color: var(--text-soft); max-width: 420px; }

.contact-map-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); min-height: 420px;
  background: var(--surface-3);
}
.contact-map-wrap iframe {
  display: block; width: 100%; height: 420px; border: 0;
  filter: saturate(.95) contrast(1.02);
}
.contact-map-card {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: rgba(253, 251, 247, 0.97); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 22px; max-width: 280px;
  box-shadow: var(--shadow-md);
}
.contact-map-card h3 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 800; margin-bottom: 6px;
}
.contact-map-card p {
  font-size: .84rem; color: var(--text-mid); margin-bottom: 12px; line-height: 1.5;
}
.contact-map-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--brand);
  text-decoration: none; transition: gap .2s;
}
.contact-map-link:hover { gap: 10px; }

/* Trust strip */
.contact-trust {
  padding: 56px 32px;
  background: var(--bg-page); border-top: 1px solid var(--border);
}
.contact-trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.contact-trust-item {
  text-align: center; padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-trust-item strong {
  display: block; font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800; margin-bottom: 6px;
}
.contact-trust-item span { font-size: .82rem; color: var(--text-soft); line-height: 1.55; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-main-inner { grid-template-columns: 1fr; }
  .contact-main-inner > aside {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .contact-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-hero-stat:nth-child(2) { border-right: none; }
  .contact-hero-stat:nth-child(1),
  .contact-hero-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .contact-shell { padding: 0 16px; margin-bottom: 32px; }
  .contact-hero { padding: 28px 24px 24px; }
  .contact-main-inner > aside,
  .contact-form-wrap,
  .contact-map-section { padding: 28px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-hero-stats { grid-template-columns: 1fr 1fr; }
  .contact-trust-inner { grid-template-columns: 1fr; }
  .contact-trust { padding-left: 20px; padding-right: 20px; }
  .contact-map-card {
    position: relative; bottom: auto; left: auto;
    max-width: none; margin: 0; border-radius: 0;
    border-left: none; border-right: none; border-bottom: none;
  }
  .contact-map-wrap { display: flex; flex-direction: column-reverse; }
  .contact-map-wrap iframe { height: 300px; }
}
