/* Kapcsolat oldal */
.section {
  max-width: 900px;
  margin: 0 auto;
}

/* Kapcsolati adatok lista */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 1rem auto 2rem;
  color: #fff;
  font-size: 1rem;
}

.contact-info li {
  margin: 6px 0;
}

/* Applikációs megjegyzés */
.app-text {
  color: #ccc;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Kapcsolat űrlap */
.contact-form {
  width: min(750px, 90vw);
  margin: 0 auto 2rem;
  padding: 18px 22px;
  border: 2px solid #ffcc33;
  border-radius: 12px;
  background: rgba(255, 204, 51, 0.08);
  box-shadow: 0 0 22px rgba(255, 204, 51, 0.25);
  text-align: left;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.contact-form label {
  color: #ddd;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #1a1a1a;
  color: #eee;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffcc33;
  box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.18);
}

/* Reszponzív */
@media (max-width: 560px) {
  .contact-form {
    padding: 14px;
  }
}

.popup-offer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  color: #fff;
  border: 2px solid #f4b400;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
  z-index: 9999;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  display: none;
}

.popup-offer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.popup-offer .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #f4b400;
  font-size: 2rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
