/* variables */
/* base */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* --- existing rules preserved/extended --- */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #0A0A0A;
}

/* Contact container */
.contact-section {
  background: #0A0A0A;
  padding: 8vw 4vw;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
  max-width: 88vw;
  margin: 0 auto;
}

.contact-form,
.contact-info {
  flex: 1 1 38vw;
  min-width: 33vw;
}

/* FORM */
.contact-form h2 {
  color: #70fa00;
  font-size: 2.2vw;
  margin-bottom: 1vw;
}

.contact-form p {
  font-size: 0.9vw;
  color: #ccc;
  margin-bottom: 1.8vw;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

/* inputs */
.contact-form input,
.contact-form textarea {
  font-size: 0.95vw;
  padding: 0.9vw;
  border: none;
  border-radius: 0.5vw;
  background: #222;
  color: #fff;
  outline: none;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #1a1a1a;
  box-shadow: 0 0 0.25vw rgba(112, 250, 0, 0.08);
}

/* reCAPTCHA spacing */
.g-recaptcha {
  margin-top: 0.6vw;
  margin-bottom: 0.8vw;
}

/* Consent (RODO) styles */
.consent-fieldset {
  border: none;
  margin: 0;
  padding: 0;
  display: block;
}

.consent-checkbox {
  display: flex;
  gap: 1vw;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  margin-top: 0.2vw;
  margin-bottom: 0.6vw;
  position: relative;
}
.consent-checkbox input[type=checkbox] {
  width: 1.8vw;
  height: 1.8vw;
  min-width: 1.8vw;
  min-height: 1.8vw;
  border-radius: 0.3vw;
  border: 0.12vw solid #333;
  background: #111;
  margin-top: 0.2vw;
  cursor: pointer;
  appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  transition: all 0.15s ease;
  /* Ptaszek */
}
.consent-checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.45vw;
  height: 0.9vw;
  border-right: 0.25vw solid #111;
  border-bottom: 0.25vw solid #111;
  transform: translate(-50%, -60%) rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.consent-checkbox input[type=checkbox]:checked {
  background: #70fa00;
  border-color: #70fa00;
}
.consent-checkbox input[type=checkbox]:checked::after {
  transform: translate(-50%, -60%) rotate(45deg) scale(1);
}
.consent-checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0.3vw rgba(112, 250, 0, 0.12);
}
.consent-checkbox .consent-label-text {
  font-size: 0.95vw;
  color: #fff;
  line-height: 1.35;
}
.consent-checkbox .consent-label-text a {
  color: #70fa00;
  text-decoration: underline;
}

.consent-help {
  font-size: 0.8vw;
  color: #ccc;
  margin-left: 2.8vw;
  margin-top: 0.6vw;
}

/* hidden input display override */
input[type=hidden] {
  display: none;
}

/* Submit button */
.contact-form button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.3vw;
  height: 3.2vw;
  background: #70fa00;
  color: #111;
  border: 0.1vw solid #70fa00;
  font-weight: bold;
  font-size: 1.1vw;
  width: 15.8vw;
  border-radius: 1vw;
  padding: 0.9vw;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button[disabled],
.contact-form button[aria-disabled=true] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.contact-form button i {
  margin-top: 0.1vw;
  transform: rotate(45deg);
  transition: transform 0.4s;
}

.contact-form button:hover i {
  transform: rotate(0deg);
}

/* status messages */
.form-status {
  display: none;
  margin-top: 0.5vw;
  padding: 0.8vw 1vw;
  border-radius: 0.6vw;
  font-size: 1vw;
  font-weight: 500;
  max-width: 40vw;
  transition: opacity 0.4s ease;
}

.form-status.success {
  background: #e6ffe6;
  color: #1b5e20;
  border: 0.2vw solid #70fa00;
  display: block;
}

.form-status.error {
  background: #ffe6e6;
  color: #b71c1c;
  border: 0.2vw solid red;
  display: block;
}

/* INFO */
.contact-info {
  margin-top: 3.8vw !important;
  background: #1a1a1a;
  padding: 2.5vw;
  border-radius: 1.2vw;
  height: 23vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.5);
}

.contact-info h3 {
  font-size: 2.2vw;
  color: #fff;
  margin-bottom: 2vw;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 1.4vw;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 3vw;
}

.contact-info .icon {
  margin-right: 1vw;
  font-size: 1.5vw;
  color: #70fa00;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #70fa00;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    gap: 6vw;
    margin-top: -3vw !important;
  }
  .contact-form, .contact-info {
    flex: 1 1 100%;
    min-width: auto;
    width: 100%;
  }
  .contact-info {
    margin-top: -3vw;
    height: auto;
    padding-left: 4vw;
    padding-top: 4vw;
  }
  .contact-form h2 {
    font-size: 7vw;
    margin-bottom: 3vw;
  }
  .contact-form p {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
  .contact-form form {
    gap: 5vw;
  }
  .contact-form input, .contact-form textarea {
    font-size: 3.5vw;
    padding: 3vw;
    border-radius: 3vw;
  }
  .contact-form textarea {
    min-height: 25vw;
  }
  .contact-form button {
    top: 2vw;
    left: 0;
    height: 13vw !important;
    width: 88vw !important;
    font-size: 4.5vw;
    padding: 3vw 4vw;
    border-radius: 5vw;
    width: fit-content;
    align-self: flex-start;
  }
  .consent-checkbox {
    gap: 3vw;
  }
  .consent-checkbox input[type=checkbox] {
    width: 6vw;
    height: 6vw;
    min-width: 6vw;
    min-height: 6vw;
    border-radius: 1vw;
  }
  .consent-checkbox input[type=checkbox]::after {
    width: 1.5vw;
    height: 3vw;
    border-right: 0.6vw solid #111;
    border-bottom: 0.6vw solid #111;
  }
  .consent-checkbox .consent-label-text {
    font-size: 3.5vw;
    line-height: 1.25;
  }
  .consent-help {
    font-size: 2.8vw;
    margin-left: 9vw;
    margin-top: 3vw;
  }
  .form-status {
    margin-top: 3vw;
    padding: 3vw;
    border-radius: 2vw;
    font-size: 4vw;
    max-width: 90%;
  }
  .contact-info h3 {
    font-size: 5vw;
    margin-bottom: 6vw;
  }
  .contact-info li {
    font-size: 4.5vw;
    margin-bottom: 5vw;
  }
  .contact-info .icon {
    font-size: 5vw;
    margin-right: 2.5vw;
  }
  .contact-section {
    padding: 10vw 6vw;
    padding-top: calc(10vw + 60px);
  }
}

/*# sourceMappingURL=contact.css.map */
