/* kontakt-custom.css - nowoczesny, czytelny wygląd sekcji kontakt */
.kontakt-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px rgba(17,24,39,0.07);
  padding: 3rem 2rem;
  margin-bottom: 2.5rem;
}
.kontakt-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b61d5;
  margin-bottom: 1.5rem;
  text-align: center;
}
.kontakt-section aside {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(17,24,39,0.08);
  padding: 2rem 1.5rem;
}
.kontakt-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.2em;
}
.kontakt-section li {
  margin-bottom: .5em;
}
.kontakt-section .form-control {
  border-radius: .7rem;
  border: 1px solid #d1d5db;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.kontakt-section .form-control:focus {
  border-color: #0b61d5;
  box-shadow: 0 0 0 0.2rem rgba(11, 97, 213, 0.25);
}
.kontakt-section .form-select {
  border-radius: .7rem;
  border: 1px solid #d1d5db;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.kontakt-section .form-select:focus {
  border-color: #0b61d5;
  box-shadow: 0 0 0 0.2rem rgba(11, 97, 213, 0.25);
}
.kontakt-section .btn-primary {
  background: linear-gradient(135deg, #0b61d5 0%, #003e8a 100%);
  border: none;
  border-radius: .7rem;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kontakt-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 97, 213, 0.3);
}
.kontakt-section a {
  color: #0b61d5;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color .18s, text-decoration-color .18s;
}
.kontakt-section a:hover, .kontakt-section a:focus {
  color: #003e8a;
  text-decoration: underline solid;
  text-decoration-thickness: 2px;
  text-decoration-color: #003e8a;
  outline: none;
}
.kontakt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-right: .5em;
  color: #0b61d5;
  font-size: 1.2em;
  vertical-align: middle;
}
.kontakt-section .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.kontakt-section .invalid-feedback {
  font-size: 0.875rem;
}
@media (max-width: 991.98px) {
  .kontakt-section {
    padding: 2rem 0.5rem;
    margin-bottom: 1.5rem;
  }
  .kontakt-section aside {
    padding: 1.2rem .5rem;
  }
  .kontakt-section form .row.g-3 > .col-12,
  .kontakt-section form .row.g-3 > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
