.kontakt-sekcja {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  color: #444;
}

@media (max-width: 768px) {
 .kontakt-sekcja {
      margin: 120px 0;
  }

}

.kontakt-info {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
  background-color: #f4f4ff;
  padding: 20px;
  border-radius: 10px;
}

.kontakt-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #3180e7;
}

.kontakt-info p {
  font-size: 16px;
  margin: 5px 0;
  color: #333;
}

.kontakt-info a {
  color: #3180e7;
  text-decoration: none;
  font-weight: bold;
}

.kontakt-info a:hover {
  text-decoration: none;
  color: #2566bb;
}

.mapa {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 1.2s ease-in-out;
}

.mapa-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.mapa-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1024px) {
  .mapa-responsive {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 0;
    height: 300px;
  }

  .mapa-responsive iframe {
    height: 100%;
  }
}

.formularz-zgloszeniowy {
  animation: fadeIn 1.4s ease-in-out;
}

.formularz-zgloszeniowy::before {
  content: "NAPISZ DO NAS:";
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #3180e7;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 1.6s ease-in-out;
}

.formularz-zgloszeniowy form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #f4f4ff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.1);
}

.formularz-zgloszeniowy label {
  font-weight: 600;
  color: #555;
}

.formularz-zgloszeniowy input[type="text"],
.formularz-zgloszeniowy input[type="email"],
.formularz-zgloszeniowy input[type="submit"],
.formularz-zgloszeniowy textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.formularz-zgloszeniowy input:focus,
.formularz-zgloszeniowy textarea:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 5px rgba(108, 99, 255, 0.2);
  outline: none;
}

.formularz-zgloszeniowy textarea {
  resize: none;
}

.formularz-zgloszeniowy input[type="submit"] {
  background-color: #a29bfe;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.formularz-zgloszeniowy input[type="submit"]:hover {
  background-color: #6c63ff;
}

/* Animacje */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsywność */
@media (max-width: 600px) {
  .kontakt-sekcja {
    padding: 20px;
  }

  .formularz-zgloszeniowy textarea {
    height: 150px;
  }
}
