/* === STYL FORMULARZA KONTAKTOWEGO (LIGHT THEME) === */
.contact-form {
  max-width: 800px;
  border-radius: 20px;
}

/* Pola formularza */
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  width: 100%;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  color: #333;
  transition: all 0.25s ease;
  box-shadow: none;
}

.contact-form .form-control::placeholder,
.contact-form .form-select::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: #ff9b3f;
  box-shadow: 0 0 6px rgba(255, 155, 63, 0.3);
  outline: none;
}

/* Tekstarea */
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Przycisk "Wyślij" */
.contact-form .btn {
  display: inline-block;
  border: none;
  width: 100%;
  border-radius: 10px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #b87333 0%, #ff9b3f 100%);
  box-shadow: 0 4px 12px rgba(255, 155, 63, 0.3);
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: linear-gradient(90deg, #a85f26 0%, #ff8a20 100%);
  box-shadow: 0 6px 18px rgba(255, 155, 63, 0.4);
  transform: translateY(-2px);
}

/* Odstępy i layout */
.contact-form .row {
  margin-bottom: 18px;
}

.contact-form .col-md-6,
.contact-form .col-md-12 {
  display: flex;
  flex-direction: column;
}

/* Select — strzałka ładniejsza */
.contact-form select.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

/* Responsywność */
@media (max-width: 768px) {
  .contact-form {
    padding: 30px 20px;
  }
}

.contact-form .form-control, .contact-form .form-select, .contact-form textarea {
background-color: white !important;
}