/* ==========================================================================
   Express-Angebot Formular Styles
   ========================================================================== */

/* Form Section */
.form-section {
  padding: 3rem 0 5rem;
  background-color: #f8f9fa;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem 2rem 1.25rem;
  background: white;
  border-bottom: 1px solid #e9ecef;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.progress-step .step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 3px solid #dee2e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.progress-step .step-icon {
  width: 28px;
  height: 28px;
  color: #6c757d;
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border-color: #ff6b35;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.progress-step.active .step-icon {
  color: white;
}

.progress-step.completed .step-number {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border-color: #ff6b35;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.progress-step.completed .step-icon {
  color: white;
}

.progress-step .step-label {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: #ff6b35;
  font-weight: 600;
}

.progress-line {
  flex: 1;
  height: 4px;
  background: #e9ecef;
  margin: 0 0.75rem;
  position: relative;
  top: 0;
  margin-bottom: 25px;
  border-radius: 2px;
  overflow: hidden;
  min-width: 60px;
  max-width: 120px;
}

.progress-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
  transition: width 0.5s ease;
}

.progress-line.completed::after {
  width: 100%;
}

/* Form Steps */
.express-form {
  padding: 2rem;
}

.form-step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Info Card - Step 0 */
.info-card {
  max-width: 1000px;
  margin: 0 auto;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.info-header .info-icon {
  width: 40px;
  height: 40px;
  color: #667eea;
  flex-shrink: 0;
}

.info-header h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.info-content {
  margin-bottom: 2rem;
}

.intro-text {
  font-size: 1.125rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.benefit-list li {
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
  line-height: 1.6;
  color: #495057;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 24px;
  height: 24px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.process-text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Warning Box */
.warning-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.warning-icon {
  width: 28px;
  height: 28px;
  color: #856404;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-content {
  flex: 1;
  color: #856404;
  line-height: 1.6;
}

.warning-content strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/* Step Actions */
.step-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
}

.step-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.step-actions .btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
}

.step-actions .btn-primary:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.step-actions .btn-secondary {
  background: #6c757d;
  color: white;
}

.step-actions .btn-secondary:hover {
  background: #5a6268;
}

.step-actions .btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.step-actions .btn-icon,
.step-actions .btn-icon-left {
  width: 20px;
  height: 20px;
}

.step-actions .btn-icon-left {
  order: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .express-angebot-page .hero-section {
    padding: 0.875rem 0 0.625rem;
  }

  .express-angebot-page .hero-section h1 {
    font-size: 1.35rem;
  }

  .express-angebot-page .hero-section .subtitle {
    font-size: 0.875rem;
  }

  .progress-bar {
    padding: 1.5rem 1rem;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .progress-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .progress-step .step-icon {
    width: 24px;
    height: 24px;
  }

  .progress-step .step-label {
    font-size: 0.75rem;
  }

  .express-form {
    padding: 1.5rem 1rem;
  }

  .info-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .info-header h2 {
    font-size: 1.25rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .benefit-list li {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
  }

  .benefit-list li::before {
    left: 0.75rem;
    top: 0.875rem;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .step-actions .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .progress-bar {
    padding: 1rem 0.5rem;
  }

  .progress-step .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }

  .progress-step .step-icon {
    width: 20px;
    height: 20px;
  }

  .progress-line {
    margin: 0 0.5rem;
    min-width: 50px;
    max-width: 80px;
  }

  .warning-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Form Validation & Messages
   ========================================================================== */

/* Field Error */
.field-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

input.error,
select.error,
textarea.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Alert Messages */
.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-error {
  background: #f8d7da;
  border: 1px solid #f5c2c7;
  color: #842029;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  color: #28a745;
  margin: 0 auto 1.5rem;
}

.success-message h2 {
  color: #28a745;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.success-message p {
  font-size: 1.125rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.success-message strong {
  color: #2c3e50;
}

.success-message .btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Form Elements
   ========================================================================== */

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9375rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Form Row (2 columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Input with Icon */
.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #6c757d;
  pointer-events: none;
}

.input-with-icon .form-control {
  padding-left: 3rem;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 2rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: #495057;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: white;
  border: 2px solid #dee2e6;
}

.radio-label:hover {
  border-color: #ff6b35;
  background: #fff5f0;
}

.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  cursor: pointer;
  border: 2px solid #adb5bd;
  border-radius: 50%;
  background: white;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.radio-label input[type="radio"]:hover {
  border-color: #ff6b35;
}

.radio-label input[type="radio"]:checked {
  border-color: #ff6b35;
  background: white;
}

.radio-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.radio-label input[type="radio"]:checked + span {
  color: #ff6b35;
  font-weight: 600;
}

.radio-label span {
  user-select: none;
}

/* Address Section */
.address-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.address-section h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* Address Row (side by side) */
.address-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.address-row .address-section {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .address-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .address-row .address-section {
    margin-bottom: 0;
  }
}

/* Info Box */
.info-box {
  background: #e7f3ff;
  border-left: 4px solid #004e89;
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon-small {
  width: 24px;
  height: 24px;
  color: #004e89;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box p {
  margin: 0 0 0.75rem 0;
  color: #2c3e50;
  line-height: 1.6;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box strong {
  font-weight: 600;
}
/* ==========================================================================
   Service Cards & Checkboxes
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-card {
  background: white;
}

.checkbox-card {
  display: block;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.checkbox-card:hover {
  border-color: #ff6b35;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.checkbox-card input[type="checkbox"] {
  display: none;
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-content {
  border-left: 4px solid #004e89;
  padding-left: 1rem;
}

.checkbox-card input[type="checkbox"]:checked {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.checkbox-card:has(input[type="checkbox"]:checked) {
  border-color: #004e89;
  background: #e7f3ff;
  box-shadow: 0 2px 8px rgba(0, 78, 137, 0.2);
}

.checkbox-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.checkbox-content p {
  font-size: 0.9375rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.checkbox-group {
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: #495057;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #004e89;
}

.checkbox-label span {
  user-select: none;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Umfang Cards
   ========================================================================== */

.umfang-card {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
}

.umfang-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #dee2e6;
}

.umfang-icon {
  width: 32px;
  height: 32px;
  color: #004e89;
  flex-shrink: 0;
}

.umfang-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.umfang-card .form-group {
  margin-bottom: 1rem;
}

.info-text {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 1rem 0 0 0;
  padding: 0.75rem;
  background: white;
  border-radius: 6px;
}

/* Warning Box Yellow */
.warning-box-yellow {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.warning-icon-yellow {
  width: 28px;
  height: 28px;
  color: #856404;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-content-yellow {
  flex: 1;
  color: #856404;
  line-height: 1.6;
}

.warning-content-yellow strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/* ==========================================================================
   Step 5: Photo Upload
   ========================================================================== */

.upload-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.upload-intro-icon {
  width: 64px;
  height: 64px;
  color: #004e89;
  margin: 0 auto 1rem;
}

.upload-intro h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.upload-intro p {
  font-size: 1rem;
  color: #6c757d;
}

.upload-area {
  position: relative;
  border: 3px dashed #dee2e6;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  background: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-area:hover {
  border-color: #004e89;
  background: #e7f1fa;
}

.upload-area.dragover {
  border-color: #ff6b35;
  background: #fff5f2;
}

.upload-icon {
  width: 48px;
  height: 48px;
  color: #6c757d;
  margin: 0 auto 1rem;
  transition: color 0.3s ease;
}

.upload-area:hover .upload-icon {
  color: #004e89;
}

.upload-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.upload-hint {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.photo-item {
  position: relative;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  aspect-ratio: 1;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 100%;
}

.photo-item-pdf svg {
  width: 48px;
  height: 48px;
  color: #dc3545;
  margin-bottom: 0.5rem;
}

.photo-item-pdf span {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: center;
  word-break: break-word;
}

.photo-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.9);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.photo-remove:hover {
  background: #dc3545;
  transform: scale(1.1);
}

.photo-remove svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Step 6: Summary
   ========================================================================== */

.summary-section {
  margin-bottom: 2rem;
}

.summary-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.summary-card {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.summary-card h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #004e89;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #dee2e6;
}

.summary-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.summary-content {
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.6;
}

.summary-content p {
  margin-bottom: 0.5rem;
}

.summary-content p:last-child {
  margin-bottom: 0;
}

.summary-content strong {
  font-weight: 600;
  color: #2c3e50;
}

.summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-list li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  font-size: 1.125rem;
}

.privacy-section {
  background: #e7f1fa;
  border: 2px solid #004e89;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.privacy-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: #004e89;
  flex-shrink: 0;
}

.privacy-label span {
  user-select: none;
  color: #2c3e50;
}

.privacy-label a {
  color: #004e89;
  text-decoration: underline;
}

.privacy-label a:hover {
  color: #ff6b35;
}

/* ==========================================================================
   Category Selection (Step 0)
   ========================================================================== */
.category-selection {
  padding: 3rem 2rem;
}

.category-selection h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0066cc;
}

.category-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.category-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  border-color: #0066cc;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
  transform: translateY(-4px);
}

.category-card.selected {
  border-color: #0066cc;
  background: #f0f8ff;
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 2;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #212529;
}

.category-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.category-features li {
  padding: 0.5rem 0;
  color: #495057;
  position: relative;
  padding-left: 1.75rem;
}

.category-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.category-card .btn {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-selection {
    padding: 2rem 1rem;
  }

  .category-selection h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .summary-row {
    grid-template-columns: 1fr;
  }

  .photo-preview {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
