/* QUOTE PAGE ONLY - v1.0.0 */
.quote-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(223, 146, 47, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, var(--background-light) 100%);
}

.quote-hero .section-heading {
  margin-bottom: 0;
}

.quote-builder-section {
  padding-top: 72px;
}

.quote-builder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.quote-column {
  background: #ffffff;
  border: var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.quote-column > * + * {
  margin-top: 1rem;
}

.quote-column-header p {
  color: rgba(26, 26, 26, 0.82);
}

.quote-package-buttons {
  display: grid;
  gap: 12px;
  margin-top: 1rem;
}

.quote-package-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(33, 44, 66, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--primary-dark);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.quote-package-btn:hover,
.quote-package-btn:focus {
  border-color: rgba(55, 74, 147, 0.28);
  box-shadow: 0 10px 24px rgba(33, 44, 66, 0.08);
  transform: translateY(-1px);
}

.quote-package-btn.is-selected {
  border-color: var(--primary-blue);
  background: rgba(55, 74, 147, 0.08);
}

.quote-package-name {
  font-weight: 700;
}

.quote-package-price {
  font-size: 0.96rem;
  color: rgba(26, 26, 26, 0.76);
}

.quote-subtotal {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(33, 44, 66, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.quote-subtotal-label {
  font-weight: 700;
  color: var(--primary-dark);
}

.quote-subtotal-value {
  font-weight: 700;
  color: var(--primary-blue);
}

.quote-total-card {
  margin-top: 28px;
  background: #ffffff;
  border: var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
}

.quote-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.quote-total-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.quote-total-value {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  font-weight: 800;
  color: var(--accent-orange);
}

.quote-total-note {
  margin-top: 0.95rem;
  color: rgba(26, 26, 26, 0.78);
}

.quote-request-section {
  padding-top: 96px;
}

.quote-form-shell {
  max-width: 100% !important;
}

.quote-hidden-field {
  display: none !important;
}

.quote-form-note {
  margin-top: 0.5rem;
  color: rgba(26, 26, 26, 0.78);
  font-size: 0.95rem;
}

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

@media (max-width: 820px) {
  .quote-hero {
    padding: 84px 0 60px;
  }

  .quote-builder-section {
    padding-top: 60px;
  }

  .quote-request-section {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .quote-column,
  .quote-total-card {
    padding: 24px;
  }

  .quote-package-btn {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-subtotal,
  .quote-total-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
