:root {
  --onyx: #0a0a0a;
  --gold: #00bfff;
  --alabaster: #f5f5f5;
  --graphite: #1a1a1a;
  --dark-graphite: #141414;
  --gold-light: #d4b267;
  --gold-dark: #b08c4a;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font1: "Montserrat", sans--serif;
  --font2: "Playfair Display", serif;
}
.calculator-section {
  padding: 4rem 0;
  background: var(--onyx);
  position: relative;
}

.calculator-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--graphite);
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.calculator-step {
  padding: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.calculator-step:last-of-type {
  border-bottom: none;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.step-description {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.service-category {
  margin-bottom: 2rem;
}

.category-title {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-icon {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.category-description {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  padding-left: 2.25rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-option {
  position: relative;
}

.checkbox-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-option label {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--onyx);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  gap: 1rem;
}

.checkbox-option label:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-2px);
}

.checkbox-option input:checked + label {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.05);
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkbox-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  transform: scale(0);
  transition: var(--transition);
}

.checkbox-option input:checked + label .checkbox-custom {
  border-color: var(--gold);
}

.checkbox-option input:checked + label .checkbox-custom::after {
  transform: scale(1);
}

.checkbox-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox-title {
  display: block;
  font-weight: 600;
  color: var(--alabaster);
}

.checkbox-price {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  text-align: right;
  min-width: 100px;
}

.vehicle-size-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .vehicle-size-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

.size-option {
  background: var(--onyx);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.size-option:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-3px);
}

.size-option.selected {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.05);
}

.size-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--onyx);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.size-icon svg {
  width: 30px;
  height: 30px;
}

.size-option.selected .size-icon {
  transform: scale(1.1);
}

.size-label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.size-description {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.4;
}

.condition-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.condition-option {
  background: var(--onyx);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.condition-option:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateX(5px);
}

.condition-option.selected {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.05);
}

.condition-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid transparent;
}

.condition-option.selected .condition-indicator {
  border-color: var(--gold);
  transform: scale(1.1);
}

.condition-content {
  flex: 1;
}

.condition-title {
  font-weight: 600;
  color: var(--alabaster);
  margin-bottom: 0.25rem;
}

.condition-description {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.4;
}

.price-breakdown {
  background: var(--onyx);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem auto;
  border-left: 3px solid var(--gold);
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-item:last-child {
  border-bottom: none;
  font-weight: 600;
  color: var(--gold);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item-name {
  font-size: 0.9rem;
}

.breakdown-item-price {
  font-size: 0.9rem;
  font-weight: 500;
}

.calculator-summary {
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(197, 160, 89, 0.05) 0%,
    rgba(10, 10, 10, 0.1) 100%
  );
  border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.summary-content {
  text-align: center;
}

.summary-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--alabaster);
}

.price-and-warnings {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .price-and-warnings {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
  }
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .price-container {
    margin-bottom: 0;
  }
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font1);
  line-height: 1;
}

.currency {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  opacity: 0.7;
  line-height: 1;
}

.price-warnings {
  max-width: 400px;
  min-width: 300px;
}

@media (max-width: 767px) {
  .price-warnings {
    width: 100%;
    max-width: 100%;
  }
}

.price-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-light);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  text-align: left;
  animation: slideInRight 0.3s ease-out;
}

.price-warning:last-child {
  margin-bottom: 0;
}

.price-warning svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.1rem;
}

.price-warning strong {
  color: var(--gold);
  font-weight: 600;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.summary-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  margin-top: 2rem;
}

.phone-input-container {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.phone-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--onyx);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--alabaster);
  font-family: var(--font1);
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
}

.phone-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.phone-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.phone-note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  opacity: 0.7;
  color: var(--gold-light);
}

.summary-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  padding: 1.2rem;
  background: var(--gold);
  color: var(--onyx);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.summary-button:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

@media (max-width: 767px) {
  .calculator-step {
    padding: 1.5rem;
  }

  .size-option {
    padding: 1.25rem 0.75rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .summary-button {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .phone-input {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .checkbox-price {
    min-width: 80px;
  }

  .condition-option {
    padding: 0.75rem;
  }

  .condition-indicator {
    width: 20px;
    height: 20px;
  }

  .price-warnings {
    min-width: auto;
  }

  .price-warning {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .price-warning svg {
    width: 18px;
    height: 18px;
  }
}

.checkbox-option.disabled-by-multi-step label {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox-option.disabled-by-multi-step label::after {
  content: " (zawarte w Pełnej Korekcie)";
  font-size: 0.8em;
  opacity: 0.7;
  font-style: italic;
  margin-left: 0.5rem;
}

.reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--alabaster);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.reset-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.reset-button svg {
  fill: currentColor;
}
/* Unified Offer Section Styles */
.unified-offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.unified-offer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.unified-form-section {
  display: flex;
  flex-direction: column;
}

.unified-form-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-main);
}

.compact-reservation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compact-reservation-form .form-group {
  display: flex;
  flex-direction: column;
}

.compact-reservation-form label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.compact-reservation-form input {
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--trans);
}

.compact-reservation-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.compact-reservation-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.unified-cta-btn {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  font-size: 0.95rem;
}

.unified-offer-details {
  display: flex;
  flex-direction: column;
}

.compact-price-section {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.compact-price-value {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 800;
  margin: 15px 0;
  color: var(--text-main);
  line-height: 1;
}

.compact-price-value small {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 5px;
  font-weight: 400;
}

.compact-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  padding: 6px 12px;
}

.compact-benefits {
  margin-bottom: 25px;
}

.compact-benefit-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.compact-benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  color: var(--accent);
  margin-right: 12px;
  font-weight: 700;
}

.benefit-text {
  color: var(--text-main);
  font-size: 0.95rem;
}

.compact-stats {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 25px 0;
  padding: 20px;
  background: rgba(0, 191, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.compact-stat {
  text-align: center;
  flex: 1;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.compact-offer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.compact-offer-note strong {
  color: var(--text-main);
}

/* Responsywność */
@media (max-width: 768px) {
  .unified-offer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .unified-offer-card {
    padding: 30px 20px;
  }

  .compact-price-value {
    font-size: 2.5rem;
  }

  .compact-stats {
    padding: 15px;
  }

  .stat-value {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .compact-stats {
    flex-direction: column;
    gap: 10px;
  }

  .compact-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .stat-value {
    margin-bottom: 0;
  }
}
