
.contact-box {
  background-color: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0.1, 0.1, 0.1, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  margin: 40px auto;
  animation: fadeIn 0.8s ease-out both;
  
}

.contact-info {
  padding: 40px 30px 30px;
  text-align: center;
  animation: fadeIn 0.8s ease-out both;
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #1e1e1e;
  font-weight: 600;
}

.phone-label {
  font-size: 16px;
  color: #636363;
  margin-bottom: 4px;
}

.phone-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #0078d7;
  text-decoration: none;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

.phone-text:hover {
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 300px;
  animation: fadeIn 1s ease-out both;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.8s ease-out both;
}

.contact-form label {
  font-size: 16px;
  color: #636363;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0078d7;
  outline: none;
}

.contact-form button {
  padding: 12px;
  background-color: #0078d7;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005fa3;
}

/* Responsywność */
@media (max-width: 600px) {
  .contact-form {
    padding: 0 15px 20px;
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }

  .contact-form button {
    font-size: 15px;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsywność */
@media (max-width: 600px) {
  .contact-box {
    margin: 20px 10px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0.1, 0.1, 0.1, 0.08);
  }

  .contact-info {
    padding: 25px 15px 20px;
  }

  .contact-info h2 {
    font-size: 20px;
  }

  .phone-label {
    font-size: 14px;
  }

  .phone-text {
    font-size: 16px;
  }

  .map-container {
    height: 220px; /* Mniejsza mapa na mniejszych ekranach */
  }
}
