

@import url("./oferta.css");

html {
  scroll-padding-top: 120px;
}

.zamow-page .offer-hero {
  min-height: auto;
  align-items: flex-start;
  padding-top: 160px;
  padding-bottom: 80px;
}

.zamow-page .offer-hero-bg {
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 196, 12, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 82% 70%,
      rgba(255, 196, 12, 0.08),
      transparent 36%
    );
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.zamow-page .offer-heading {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.zamow-content {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.zamow-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100%;
  gap: 0;
}

.zamow-section-01 {
  padding: 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.zamow-section-01.is-active {
  box-shadow:
    inset 4px 0 0 0 #ffc40e,
    inset 0 0 30px rgba(255, 196, 12, 0.1);
  background: rgba(255, 196, 12, 0.05);
}

.zamow-section-sticky {
  position: sticky;
  top: 3rem;
}

.zamow-section-02-03 {
  padding: 0 2rem;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.zamow-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.zamow-section-number {
  color: #ffc40e;
  font-size: 2rem;
  font-weight: 900;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.zamow-section-number.is-active {
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(255, 196, 12, 0.4);
}

.zamow-section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.zamow-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zamow-service-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zamow-service-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.zamow-service-btn:has(~ .zamow-service-btn.active),
.zamow-service-btn.active ~ .zamow-service-btn,
.zamow-services-list:has(.active) .zamow-service-btn:not(.active) {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.5;
}

.zamow-services-list:has(.active) .zamow-service-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.7;
}

.zamow-service-btn.active {
  background: #ffc40e;
  color: #03132d;
  border-color: #ffc40e;
  opacity: 1;
}

.zamow-service-name {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  flex: 1;
}

.zamow-service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.zamow-service-desc {
  display: none;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.25rem;
}

.zamow-service-btn.active .zamow-service-desc {
  display: block;
  color: #03132d;
  font-weight: 500;
}

.zamow-service-arrow {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 3;
  opacity: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.zamow-service-btn.active .zamow-service-arrow {
  opacity: 1;
  transform: rotate(45deg);
}

.zamow-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.zamow-input-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.zamow-budget-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.zamow-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.zamow-slider:hover {
  background: rgba(255, 255, 255, 0.15);
}

.zamow-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #ffc40e;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 196, 14, 0.4);
  transition: all 0.3s ease;
}

.zamow-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 196, 14, 0.6);
}

.zamow-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #ffc40e;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 196, 14, 0.4);
  transition: all 0.3s ease;
}

.zamow-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 196, 14, 0.6);
}

.zamow-budget-value {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffc40e;
  padding: 0.5rem 0;
}

.zamow-budget-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -0.5rem;
}

.zamow-budget-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zamow-budget-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.zamow-budget-option input[type="radio"] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: transparent;
}

.zamow-budget-option input[type="radio"]:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.zamow-budget-option input[type="radio"]:checked {
  border-color: #ffc40e;
  background: #ffc40e;
  box-shadow: 0 0 0 3px rgba(255, 196, 12, 0.2);
}

.zamow-budget-label {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.zamow-budget-option input[type="radio"]:checked + .zamow-budget-label {
  color: #ffc40e;
  font-weight: 600;
}

.zamow-input,
.zamow-select,
.zamow-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}

.zamow-input::placeholder,
.zamow-textarea::placeholder {
  color: transparent;
}

.zamow-input:focus,
.zamow-select:focus,
.zamow-textarea:focus {
  border-bottom-color: #ffc40e;
  background: rgba(255, 196, 12, 0.03);
}

.zamow-input-underline-active {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--zamow-accent);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0%;
}

.zamow-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFC40E' stroke-width='2.5' stroke-linecap='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1.2rem;
  padding-right: 2rem;
}

.zamow-select option {
  background: #03132d;
  color: #ffffff;
}

.zamow-textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  resize: vertical;
  min-height: 120px;
}

.zamow-textarea:focus {
  border-color: #ffc40e;
}

.zamow-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  background: #ffc40e;
  color: #03132d;
  padding: 2.5rem;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 0.5rem;
}

.zamow-submit-btn:hover {
  background: white;
}

.zamow-submit-arrow {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2.5;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.zamow-submit-btn:hover .zamow-submit-arrow {
  transform: translateX(0.5rem);
}

.zamow-success-notification {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #ffc40e;
  color: #03132d;
  padding: 18px 32px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 196, 14, 0.4);
  z-index: 9999;
  animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .zamow-success-notification {
    bottom: 24px;
    right: 24px;
    left: 24px;
    padding: 16px 24px;
    font-size: 0.9rem;
  }
}

.zamow-error {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 600px;
  width: 90%;
  animation: slideDown 0.3s ease;
}

.zamow-error.hidden {
  display: none !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.zamow-error-content {
  background: linear-gradient(135deg, #cc0000, #ff4444);
  color: #ffffff;
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.zamow-error-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.zamow-error-content p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.zamow-error-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.zamow-error-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.zamow-input:disabled,
.zamow-textarea:disabled,
.zamow-slider:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.05);
}

.zamow-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
  margin-top: 2rem;
}

.zamow-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.zamow-footer-item,
.zamow-footer-highlight {
  padding: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zamow-footer-item:last-child,
.zamow-footer-highlight {
  border-right: none;
}

.zamow-footer-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.zamow-footer-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zamow-footer-value:hover {
  color: #ffc40e;
}

.zamow-footer-highlight {
  background: #ffc40e;
  color: #03132d;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.zamow-footer-brand {
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: italic;
  transition: color 0.3s ease;
}

.zamow-footer-brand.status-open {
  color: #00cc00;
}

.zamow-footer-brand.status-closed {
  color: #cc0000;
}

.zamow-status-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.zamow-status-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(3, 19, 45, 0.5);
  text-transform: uppercase;
}

.zamow-footer-dots {
  display: flex;
  gap: 0.5rem;
}

.zamow-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: #03132d;
  transition: background 0.3s ease;
}

.zamow-dot.status-open {
  background: #00cc00;
}

.zamow-dot.status-closed {
  background: #cc0000;
}

@media (max-width: 1024px) {
  .zamow-form-grid {
    grid-template-columns: 1fr;
  }

  .zamow-section-01 {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
  }

  .zamow-section-02-03 {
    padding: 2rem 1rem;
  }

  .zamow-section-sticky {
    position: relative;
    top: 0;
  }

  .zamow-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .zamow-page .offer-hero {
    display: none;
  }

  .zamow-content {
    padding-top: 85px;
    background: #03132d;
  }

  .zamow-section-01,
  .zamow-section-02-03 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .zamow-section-01 {
    background: transparent;
  }

  .zamow-header-label {
    font-size: 0.65rem;
  }

  .zamow-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .zamow-section-number {
    font-size: 1.5rem;
  }

  .zamow-section-header h2 {
    font-size: 1.25rem;
  }

  .zamow-submit-btn {
    padding: 1.75rem;
    font-size: 1.1rem;
  }

  .zamow-service-btn {
    padding: 1.25rem;
  }

  .zamow-footer-grid {
    grid-template-columns: 1fr;
  }

  .zamow-footer-highlight,
  .zamow-footer-item {
    display: none;
  }

  .zamow-footer-item,
  .zamow-footer-highlight {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .zamow-footer-item:last-child,
  .zamow-footer-highlight {
    border-bottom: none;
  }
}
