/* Contact Form - aptekamiodowa */
#contact {
  padding: 20px 0;
}
#contact h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8a000;
}
#contact-form-link {
  margin-bottom: 20px;
}
#contact-form-link a {
  color: #e8a000;
  text-decoration: none;
}
#contact-form-link a:hover {
  text-decoration: underline;
}
#contact fieldset {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}
#contact fieldset legend {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding: 0 10px;
}
#contact .form-group {
  margin-bottom: 15px;
}
#contact label {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
  font-weight: 600;
}
#contact label em {
  color: #e8a000;
  font-style: normal;
}
#contact input[type="text"],
#contact input[type="email"],
#contact select,
#contact textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 13px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: #e8a000;
  outline: none;
  box-shadow: 0 0 4px rgba(232,160,0,0.2);
}
#contact textarea {
  height: 120px;
  resize: vertical;
}
#contact .submit {
  text-align: right;
  margin-top: 10px;
}
#contact .submit button {
  background: #e8a000;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
#contact .submit button:hover {
  background: #cc8c00;
}
#contact .alert {
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 15px;
  font-size: 13px;
}
#contact .alert-success {
  background: #dff0d8;
  border: 1px solid #d6e9c6;
  color: #3c763d;
}
#contact .alert-danger {
  background: #f2dede;
  border: 1px solid #ebccd1;
  color: #a94442;
}
.contact-info-block {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 20px;
}
.contact-info-block h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 16px;
}
.contact-info-block p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}
.contact-info-block i {
  color: #e8a000;
  margin-right: 8px;
}
