/* ================================
   Core Layout: Side-by-Side Cards
=================================== */
.scc-calculator-container {
  display: grid !important;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  margin: 2rem auto;
  max-width: 1200px;
  box-sizing: border-box;
}

/* Left Section */
.scc-services-section {
  background: transparent;
}

.scc-service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.scc-service-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.15);
}

.scc-service-card label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
}

.scc-service-card input[type="checkbox"] {
  margin-top: 0.4rem;
  transform: scale(1.2);
}

.scc-service-details h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.scc-service-details p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.scc-service-price {
  margin-left: auto;
  font-weight: 700;
  color: #2563eb;
}

/* Right Section (Summary) */
.scc-summary-section {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 20px;
}

.scc-summary-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.scc-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.scc-summary-table td {
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.scc-total-row td {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.75rem;
  font-weight: 700;
}

.scc-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.scc-btn-continue {
  width: 100%;
  text-align: center;
  background: #2563eb;
  color: #fff;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.scc-btn-continue:hover {
  background: #1d4ed8;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 900px) {
  .scc-calculator-container {
    grid-template-columns: 1fr;
  }

  .scc-summary-section {
    position: relative;
    top: 0;
    width: 100%;
  }
}
