@charset "UTF-8";
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}

.modal__btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.modal__header .modal__btn {
  background-color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.modal__header .modal__btn:hover {
  opacity: 0.4;
}

.modal__title {
  margin-bottom: 0;
}

/* ========== Contact Form 7 – jasny styl ========== */
.wpcf7 {
  --cf7-bg: #ffffff;
  --cf7-text: #111827;
  --cf7-muted: #6b7280;
  --cf7-border: #e5e7eb;
  --cf7-border-strong: #cbd5e1;
  --cf7-primary: #FFE352;
  /* zmień na swój kolor */
  --cf7-primary-strong: #ffb752;
  --cf7-success: #16a34a;
  --cf7-error: #dc2626;
  --cf7-radius: 12px;
  --cf7-input-bg: #ffffff;
  --cf7-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  --cf7-focus-ring: 0 0 0 4px rgba(0, 97, 163, .15);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--cf7-text);
  max-width: 560px;
  margin: 0 auto;
}

/* Karta formularza */
/* Pola */
.wpcf7 .wpcf7-form-control.wpcf7-text,
.wpcf7 .wpcf7-form-control.wpcf7-email,
.wpcf7 .wpcf7-form-control.wpcf7-tel,
.wpcf7 .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  background: var(--cf7-input-bg);
  color: var(--cf7-text);
  border: 1px solid var(--cf7-border-strong);
  border-radius: 0px;
  padding: 12px 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 14px;
}

.wpcf7 ::-moz-placeholder {
  color: var(--cf7-muted);
  opacity: 0.9;
}

.wpcf7 ::placeholder {
  color: var(--cf7-muted);
  opacity: 0.9;
}

.wpcf7 .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--cf7-primary);
  box-shadow: var(--cf7-focus-ring);
}

/* Błędy */
.wpcf7 .wpcf7-not-valid {
  border-color: var(--cf7-error) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--cf7-error);
}

/* Przycisk */
.wpcf7 .wpcf7-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.3125rem;
  border: none;
  background: #FFE352;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.06s ease;
}

.wpcf7 .wpcf7-submit:hover {
  background: #ffcb52;
}

.wpcf7 .wpcf7-submit:active {
  transform: translateY(0.5px);
}

/* Spinner */
.wpcf7 .wpcf7-spinner {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--cf7-border-strong);
  border-top-color: var(--cf7-primary);
  border-radius: 50%;
  animation: cf7spin 0.8s linear infinite;
}

@keyframes cf7spin {
  to {
    transform: rotate(360deg);
  }
}
/* Komunikaty */
.wpcf7 .wpcf7-response-output {
  margin-top: 16px;
  border-radius: 0px;
  padding: 12px 14px;
  border: 1px solid var(--cf7-border);
  background: #f9fafb;
  font-size: 0.95rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.07);
  color: var(--cf7-success);
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.07);
  color: var(--cf7-error);
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0 0 1rem 0;
}

/* Custom Checkbox Styles - 32px */
.wpcf7 input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 32px;
  height: 32px;
  border: 2px solid var(--cf7-border-strong);
  border-radius: 4px;
  background-color: var(--cf7-input-bg);
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  margin-right: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.wpcf7 input[type=checkbox]:hover {
  border-color: var(--cf7-primary);
  box-shadow: 0 0 0 2px rgba(0, 97, 163, 0.1);
}
.wpcf7 input[type=checkbox]:focus {
  outline: none;
  border-color: var(--cf7-primary);
  box-shadow: var(--cf7-focus-ring);
}
.wpcf7 input[type=checkbox]:checked {
  background-color: var(--cf7-primary);
  border-color: var(--cf7-primary);
}
.wpcf7 input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 14px;
  border: solid rgb(0, 0, 0);
  border-width: 0 3px 3px 0;
}
.wpcf7 input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
}
.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.wpcf7 input[type=checkbox].wpcf7-not-valid {
  border-color: var(--cf7-error) !important;
}
.wpcf7 input[type=checkbox].wpcf7-not-valid:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

.hero-banner-3 {
  min-height: 500px;
}
.hero-banner-3 .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.hero-banner-3 .row.g-0 {
  margin-left: 0;
  margin-right: 0;
}
.hero-banner-3 .row.g-0 > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.hero-banner-3__image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.hero-banner-3__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-banner-3__placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #dee2e6;
}
.hero-banner-3__placeholder-text {
  color: #6c757d;
  font-size: 18px;
  font-weight: 500;
}
.hero-banner-3__content {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 3.75rem 2.5rem;
  background: #ffffff;
}
.hero-banner-3__content-inner {
  width: 100%;
  max-width: 500px;
}
.hero-banner-3__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  color: #60a70b;
  margin-bottom: 0.9375rem;
  line-height: 1.2;
}
.hero-banner-3__title {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
  color: #212529;
  margin-bottom: 20px;
}
.hero-banner-3__title span {
  background-color: #FFE352;
}
@media (max-width: 768px) {
  .hero-banner-3__title {
    font-size: 36px;
  }
}
.hero-banner-3__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #1e2123;
  margin-bottom: 25px;
}
.hero-banner-3__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 35px;
}
.hero-banner-3__text p {
  margin-bottom: 15px;
}
.hero-banner-3__text p:last-child {
  margin-bottom: 0;
}
.hero-banner-3__button-wrapper {
  margin-top: 30px;
}
.hero-banner-3__button {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.hero-banner-3__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
@media (max-width: 991.98px) {
  .hero-banner-3 .row {
    flex-direction: column-reverse;
  }
  .hero-banner-3__content {
    padding: 40px 30px;
  }
  .hero-banner-3__image-wrapper {
    min-height: 300px;
  }
}
@media (max-width: 767.98px) {
  .hero-banner-3__content {
    padding: 30px 20px;
  }
  .hero-banner-3__title {
    font-size: 28px;
  }
  .hero-banner-3__description {
    font-size: 18px;
  }
  .hero-banner-3__text {
    font-size: 16px;
  }
}
.hero-banner-3.alignwide .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-banner-3.alignfull .container-fluid {
  max-width: 100%;
}/*# sourceMappingURL=style.css.map */