/* Contact page */

.contact-hero{ padding-top: 28px; }

.contact-head{
  max-width: 860px;
  margin-bottom: 18px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.card{
  border: 1px solid rgba(234,240,246,.10);
  background: rgba(18,24,33,.45);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}

.card-top h2{ margin: 0; }
.muted{ color: var(--muted); }
.small{ font-size: 12.5px; }
.req{ color: var(--accent); font-weight: 800; }

.form{ margin-top: 14px; }
.hp{ position: absolute; left: -9999px; opacity: 0; }

.grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px){
  .grid2{ grid-template-columns: 1fr; }
}

.field{ display: block; }
.label{
  display:flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

input[type="text"], input[type="tel"], input[type="email"], select, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(234,240,246,.12);
  background: rgba(11,15,20,.55);
  color: var(--text);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: .15s ease;
}
textarea{ resize: vertical; min-height: 160px; }

input:focus, select:focus, textarea:focus{
  border-color: rgba(24,224,255,.28);
  box-shadow: 0 0 0 4px rgba(24,224,255,.10);
}

.divider{
  height: 1px;
  background: rgba(234,240,246,.10);
  margin: 16px 0;
}

.block-title h3{ margin: 6px 0 0; }
.block-title p{ margin: 6px 0 0; }

/* Compact options */
.opts-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}
@media (min-width: 1100px){
  .opts-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .opts-grid{ grid-template-columns: 1fr; }
}

.opt{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  border: 1px solid rgba(234,240,246,.10);
  background: rgba(234,240,246,.03);
  padding: 10px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: .15s ease;
}
.opt:hover{
  border-color: rgba(24,224,255,.22);
  background: rgba(24,224,255,.06);
}
.opt input{
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.opt span{
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(234,240,246,.88);
}

/* Message header with copy button */
.msg-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 8px;
}
.msg-head .label{
  margin: 0;
}

.btn-copy{
  border-radius: 999px;
  border: 1px solid rgba(234,240,246,.14);
  background: rgba(234,240,246,.05);
  color: rgba(234,240,246,.90);
  padding: 10px 12px;
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  transition: .15s ease;
}
.btn-copy:hover{
  border-color: rgba(24,224,255,.22);
  background: rgba(24,224,255,.08);
}
.btn-copy:active{
  transform: translateY(1px);
}

.copy-status{
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(234,240,246,.70);
  min-height: 18px;
}
.copy-status.ok{ color: rgba(66,255,154,.90); }
.copy-status.bad{ color: rgba(255,95,95,.92); }

.consents{
  margin-top: 12px;
  border-top: 1px solid rgba(234,240,246,.10);
  padding-top: 12px;
}
.consent{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 13px;
}
.consent input{ margin-top: 3px; width: 16px; height: 16px; }

.form-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.form-status{
  margin-top: 12px;
  font-size: 13px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(234,240,246,.12);
  background: rgba(11,15,20,.45);
  color: var(--muted);
}
.form-status.ok{
  border-color: rgba(66,255,154,.20);
  background: rgba(66,255,154,.06);
  color: rgba(234,240,246,.85);
}
.form-status.bad{
  border-color: rgba(255,95,95,.22);
  background: rgba(255,95,95,.06);
  color: rgba(234,240,246,.90);
}

.contact-side{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.kv{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(234,240,246,.10);
}
.k{ color: rgba(234,240,246,.62); font-size: 13px; }
.v{ color: var(--text); font-size: 13px; }

.side-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* NEW: premium micro-cards in side panel */
.microgrid{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.micro{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(234,240,246,.10);
  background: rgba(234,240,246,.03);
}

.micro-ic{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(24,224,255,.08);
  border: 1px solid rgba(24,224,255,.16);
  font-size: 16px;
  flex: 0 0 34px;
}

.micro-h{
  font-weight: 800;
  font-size: 13px;
  color: rgba(234,240,246,.92);
}

.micro-p{
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(234,240,246,.68);
}
.footer-link{
  color: rgba(24,224,255,.9);
  text-decoration: none;
  font-weight: 700;
  transition: color .2s ease, text-shadow .2s ease;
}

.footer-link:hover{
  color: #18e0ff;
  text-shadow: 0 0 12px rgba(24,224,255,.45);
}
/* CTA – Zapytaj */
.nav-link.cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #00e5ff,
    #00bcd4
  );
  color: #041318;
  font-weight: 600;
  box-shadow:
    0 0 0 0 rgba(0,229,255,0.0),
    0 6px 20px rgba(0,229,255,0.35);
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease,
    background 0.25s ease;
}

/* hover */
.nav-link.cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 6px rgba(0,229,255,0.15),
    0 10px 28px rgba(0,229,255,0.45);
}

/* aktywna strona (jak na screenie) */
.nav-link.cta.active {
  box-shadow:
    0 0 0 8px rgba(0,229,255,0.18),
    0 12px 34px rgba(0,229,255,0.55);
}