/* ========================================
   STEIN IDENTIFIKATOR PRO - STYLES
======================================== */

:root {
  --primary-color: #e67e22;
  --secondary-color: #34495e;
  --accent-color: #f39c12;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --success-color: #27ae60;
  --warning-color: #f1c40f;
  --danger-color: #e74c3c;
  --info-color: #3498db;
  
  --gradient-hero: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  --gradient-button: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  
  --border-radius: 0.75rem;
  --border-radius-lg: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL STYLES
======================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: var(--light-color);
}

.container-fluid {
  padding: 0;
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-brand i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.nav-link {
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-1px);
}

.connection-indicator {
  font-size: 0.9rem;
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
  background: var(--gradient-hero);
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-features {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.feature-item i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* ========================================
   STONE SHOWCASE
======================================== */

.stone-showcase {
  position: relative;
  z-index: 2;
}

.stone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.stone-item {
  background: var(--gradient-card);
  padding: 2rem 1rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stone-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.stone-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stone-item span {
  font-weight: 600;
  color: var(--dark-color);
  display: block;
}

/* Animasjon for stone items */
.stone-item:nth-child(1) { animation: float 3s ease-in-out infinite; }
.stone-item:nth-child(2) { animation: float 3s ease-in-out infinite 0.5s; }
.stone-item:nth-child(3) { animation: float 3s ease-in-out infinite 1s; }
.stone-item:nth-child(4) { animation: float 3s ease-in-out infinite 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */

.how-it-works {
  background: white;
}

.step-card {
  padding: 2rem 1rem;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-button);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--dark-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  border: 3px solid white;
}

/* ========================================
   CATEGORY CARDS
======================================== */

.categories-preview {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.category-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.category-icon.magmatic {
  background: rgba(231, 76, 60, 0.2);
}

.category-icon.sedimentary {
  background: rgba(52, 152, 219, 0.2);
}

.category-icon.metamorphic {
  background: rgba(155, 89, 182, 0.2);
}

.category-icon.gems {
  background: rgba(46, 204, 113, 0.2);
}

.category-icon.minerals {
  background: rgba(241, 196, 15, 0.2);
}

.category-icon.meteorites {
  background: rgba(230, 126, 34, 0.2);
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
  background: var(--gradient-hero);
  background-attachment: fixed;
}

/* ========================================
   LOADING OVERLAY
======================================== */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-content .spinner-border {
  width: 4rem;
  height: 4rem;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  padding: 0.75rem 1.5rem;
}

.btn-warning {
  background: var(--gradient-button);
  color: white;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ========================================
   ANIMATIONS
======================================== */

.animate-in {
  animation: slideInUp 0.6s ease-out;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .stone-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 300px;
  }
  
  .stone-item {
    padding: 1rem 0.5rem;
  }
  
  .stone-item i {
    font-size: 1.5rem;
  }
  
  .hero-actions {
    text-align: center;
  }
  
  .hero-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .stone-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 250px;
  }
  
  .feature-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .progress-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .progress-step {
    min-width: unset;
    max-width: 100%;
  }
  
  .progress-steps::before {
    display: none;
  }
  
  .step-help {
    padding: 1rem;
  }
  
  .step-help ul {
    padding-left: 1rem;
  }
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {
  .navbar, .hero-section, .cta-section, .loading-overlay {
    display: none !important;
  }
  
  body {
    background: white !important;
  }
  
  .container {
    max-width: none !important;
  }
}

/* ========================================
   DARK MODE SUPPORT
======================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --light-color: #2c3e50;
    --dark-color: #ecf0f1;
  }
  
  .category-card {
    background: #34495e;
    color: white;
  }
  
  .how-it-works {
    background: #2c3e50;
    color: white;
  }
}

/* ========================================
   TEXT CONTRAST IMPROVEMENTS
======================================== */

/* Fix for text-muted on dark backgrounds */
.text-muted {
    color: #adb5bd !important; /* Light gray instead of Bootstrap's dark gray */
}

/* Better contrast for text-muted on dark backgrounds */
.bg-dark .text-muted,
.bg-secondary .text-muted,
.navbar-dark .text-muted,
footer.bg-dark .text-muted {
    color: #ced4da !important; /* Even lighter for better contrast */
}

/* Fix for small text elements */
.small,
small {
    color: #6c757d; /* Ensure visibility */
}

.bg-dark .small,
.bg-dark small,
.bg-secondary .small,
.bg-secondary small,
.navbar-dark .small,
.navbar-dark small,
footer.bg-dark .small,
footer.bg-dark small {
    color: #adb5bd !important; /* Light gray on dark backgrounds */
}

/* Form text and help text improvements */
.form-text,
.help-text,
.step-description {
    color: #6c757d !important;
}

.bg-dark .form-text,
.bg-dark .help-text,
.bg-dark .step-description,
.bg-secondary .form-text,
.bg-secondary .help-text,
.bg-secondary .step-description {
    color: #adb5bd !important;
}

/* Placeholder text visibility */
.form-control::placeholder {
    color: #6c757d !important;
    opacity: 1;
}

.bg-dark .form-control::placeholder,
.bg-secondary .form-control::placeholder {
    color: #adb5bd !important;
}

/* Lead text improvements */
.lead.text-muted {
    color: #adb5bd !important;
}

.bg-dark .lead.text-muted,
.bg-secondary .lead.text-muted {
    color: #ced4da !important;
}

/* Alert text improvements */
.alert .text-muted,
.alert small {
    color: #495057 !important;
}

/* Loading overlay text */
.loading-overlay .text-muted {
    color: #adb5bd !important;
}

/* Step help text */
.step-help .text-muted,
.step-help small {
    color: #495057 !important;
}

/* Category examples text */
.example-card small.text-muted {
    color: #6c757d !important;
}

/* Error page text */
.error-container .text-muted {
    color: #6c757d !important;
}

/* Offline page text */
.offline-feature .text-muted {
    color: #6c757d !important;
}

/* General text-secondary improvements */
.text-secondary {
    color: #adb5bd !important;
}

.bg-dark .text-secondary,
.bg-secondary .text-secondary {
    color: #ced4da !important;
}

/* ========================================
   IDENTIFIKATOR PAGE STYLES
======================================== */

.identifikator-container {
  min-height: 80vh;
  padding: 2rem 0;
}

.upload-zone {
  border: 3px dashed #ddd;
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.upload-zone:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
  transform: translateY(-2px);
}

.upload-zone.dragover {
  border-color: var(--success-color);
  background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
  transform: scale(1.02);
}

.upload-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.upload-zone:hover .upload-icon {
  transform: scale(1.1);
  color: var(--accent-color);
}

.upload-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.upload-hint {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.image-preview {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
}

.image-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.image-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.image-preview:hover .image-preview-overlay {
  opacity: 1;
}

.image-actions {
  display: flex;
  gap: 0.5rem;
}

.form-floating {
  margin-bottom: 1rem;
}

.form-floating > .form-control {
  border-radius: var(--border-radius);
  border: 2px solid #e9ecef;
  transition: var(--transition);
}

.form-floating > .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.form-floating > label {
  color: var(--secondary-color);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quick-option {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.quick-option:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.quick-option.selected {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Color variations styles */
.color-variations-container {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.variations-header {
  margin-bottom: 0.75rem;
}

.variations-header .form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.variations-header .text-muted {
  font-size: 0.875rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.checkbox-grid .form-check {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
  margin-bottom: 0;
}

.checkbox-grid .form-check:hover {
  background: #f1f3f4;
  border-color: var(--primary-color);
}

.checkbox-grid .form-check-input:checked + .form-check-label {
  color: var(--primary-color);
  font-weight: 500;
}

.checkbox-grid .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-grid .form-check-label {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
  .checkbox-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESULTS STYLES
======================================== */

.result-container {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 2rem;
}

.result-header {
  background: var(--gradient-button);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.result-content {
  padding: 2rem;
  line-height: 1.8;
}

.result-content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.result-content h3:first-child {
  margin-top: 0;
}

.result-content ul {
  padding-left: 1.5rem;
}

.result-content li {
  margin-bottom: 0.5rem;
}

.result-actions {
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.confidence-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.confidence-bar {
  flex: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: var(--gradient-button);
  transition: width 1s ease-out;
}

/* ========================================
   CATEGORIES PAGE STYLES
======================================== */

.categories-hero {
  background: var(--gradient-hero);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.category-filter {
  background: #f8f9fa;
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 76px;
  z-index: 100;
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
}

.filter-tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.filter-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.filter-tab i {
  margin-right: 0.5rem;
}

/* ========================================
   CATEGORY FILTERING
======================================== */

.category-detail {
  display: none;
  margin-bottom: 3rem;
  border-radius: var(--border-radius-lg);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.category-detail.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

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

.category-detail-header {
  background: var(--gradient-hero);
  color: white;
  padding: 2rem;
}

.category-detail-content {
  padding: 2rem;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
  background: var(--gradient-hero);
  background-attachment: fixed;
}

/* ========================================
   LOADING OVERLAY
======================================== */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-content .spinner-border {
  width: 4rem;
  height: 4rem;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  padding: 0.75rem 1.5rem;
}

.btn-warning {
  background: var(--gradient-button);
  color: white;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ========================================
   ANIMATIONS
======================================== */

.animate-in {
  animation: slideInUp 0.6s ease-out;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .stone-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 300px;
  }
  
  .stone-item {
    padding: 1rem 0.5rem;
  }
  
  .stone-item i {
    font-size: 1.5rem;
  }
  
  .hero-actions {
    text-align: center;
  }
  
  .hero-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .stone-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 250px;
  }
  
  .feature-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .progress-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .progress-step {
    min-width: unset;
    max-width: 100%;
  }
  
  .progress-steps::before {
    display: none;
  }
  
  .step-help {
    padding: 1rem;
  }
  
  .step-help ul {
    padding-left: 1rem;
  }
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {
  .navbar, .hero-section, .cta-section, .loading-overlay {
    display: none !important;
  }
  
  body {
    background: white !important;
  }
  
  .container {
    max-width: none !important;
  }
}

/* ========================================
   DARK MODE SUPPORT
======================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --light-color: #2c3e50;
    --dark-color: #ecf0f1;
  }
  
  .category-card {
    background: #34495e;
    color: white;
  }
  
  .how-it-works {
    background: #2c3e50;
    color: white;
  }
}

/* ========================================
   EXAMPLE CARDS STYLES
======================================== */

.category-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.example-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.example-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.example-card .example-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.example-card h6 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.example-card small {
  color: #6c757d;
}

/* ========================================
   HELP TEXT STYLES
======================================== */

.step-help-container {
  margin-bottom: 2rem;
}

.step-help {
  border-left: 4px solid var(--primary-color);
  background: rgba(230, 126, 34, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.step-help.alert-info {
  border-left-color: var(--info-color);
  background: rgba(52, 152, 219, 0.1);
}

.step-help.alert-success {
  border-left-color: var(--success-color);
  background: rgba(39, 174, 96, 0.1);
}

.step-help.alert-warning {
  border-left-color: var(--warning-color);
  background: rgba(241, 196, 15, 0.1);
}

.step-help h6 {
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-help ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.step-help li {
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.step-help p {
  margin-bottom: 0.5rem;
  color: #6c757d;
}

/* Field help styles */
.field-help {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(52, 152, 219, 0.1);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--info-color);
}

.field-help i {
  color: var(--info-color);
  margin-right: 0.5rem;
}