/* Laundry Flow Interactive Interface Styles */
/* Built for AB House Laundry - Wappler Framework Compatible */

/* Inheriting variables from landing page to ensure consistent styling */
:root {
  /* Use the exact same variable names and values from landing.css */
  --primary-color: #df691a;
  --secondary-color: #fd7e14;
  --accent-color: #ffc107;
  --success-color: #28a745;
  --dark-color: #495057;
  --light-color: #f8f9fa;
  --body-bg: #2b3035;
  --card-bg: #3a3f44;
  --text-light: #ffffff;
  --text-muted: #e2e6ea;
  --primary-color-rgb: 223, 105, 26;
  --secondary-color-rgb: 253, 126, 20;
  --card-bg-rgb: 58, 63, 68;
  --border-color-rgb: 73, 80, 87;

  /* Laundry specific variables that reference the main variables */
  --laundry-primary: var(--primary-color);
  --laundry-secondary: var(--secondary-color);
  --laundry-dark: var(--dark-color);
  --laundry-light: var(--light-color);
  --laundry-bg: var(--body-bg);
  --laundry-card-bg: rgba(var(--card-bg-rgb), 0.9);
  --laundry-border: rgba(var(--border-color-rgb), 0.2);
  --laundry-text: var(--text-light);
  --laundry-text-muted: var(--text-muted);
}

/* =============================================================================
   LAUNDRY FLOW SECTION
   ============================================================================= */

.laundry-flow-section {
  min-height: 100vh;
  background-color: var(
    --body-bg
  ); /* Use the exact same background as the landing page */
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  color: var(--text-light);
}

.laundry-flow-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 15px 15px,
      rgba(223, 105, 26, 0.08) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 45px 45px,
      rgba(253, 126, 20, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      45deg,
      transparent 24px,
      rgba(223, 105, 26, 0.04) 25px,
      rgba(223, 105, 26, 0.04) 26px,
      transparent 27px
    );
  background-size:
    30px 30px,
    60px 60px,
    50px 50px;
  background-position:
    0 0,
    15px 15px,
    0 0;
  z-index: 1;
}

.laundry-flow-section .container {
  position: relative;
  z-index: 2;
}

/* =============================================================================
   PROGRESS INDICATOR
   ============================================================================= */

.progress-container {
  margin-bottom: 4rem;
  background: var(--laundry-card-bg);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--laundry-border);
}

.progress-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.progress-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--laundry-text-muted);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.progress-step.active .step-circle {
  background: linear-gradient(
    135deg,
    var(--laundry-primary),
    var(--laundry-secondary)
  );
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 0 20px rgba(223, 105, 26, 0.4);
  box-shadow: 0 0 20px rgba(223, 105, 26, 0.4);
}

.progress-step.completed .step-circle {
  background: #28a745;
  color: white;
}

.step-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--laundry-text-muted);
  text-align: center;
}

.progress-step.active .step-label {
  color: var(--laundry-primary);
}

.progress-step.completed .step-label {
  color: #28a745;
}

/* Progress Line */
.progress-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.progress-line {
  position: absolute;
  top: 25px;
  left: 10%;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--laundry-primary),
    var(--laundry-secondary)
  );
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  z-index: -1;
}

.progress-bar {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--laundry-primary),
    var(--laundry-secondary)
  );
  border-radius: 2px;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  width: 16.67%; /* Default to step 1 */
}

/* =============================================================================
   FLOW CONTENT AND STEPS
   ============================================================================= */

.flow-content {
  position: relative;
}

.flow-step {
  display: none;
  -webkit-animation: fadeIn 0.5s ease-in-out;
  animation: fadeIn 0.5s ease-in-out;
}

.flow-step.active {
  display: block;
}

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

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

.step-header {
  margin-bottom: 3rem;
}

.step-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--laundry-text);
  margin-bottom: 1rem;
  text-align: center;
}

.step-subtitle {
  font-size: 1.2rem;
  color: var(--laundry-text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

/* =============================================================================
   SERVICE TYPE SELECTION
   ============================================================================= */

.service-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* =============================================================================
   SERVICE TYPE CARDS
   ============================================================================= */

.service-type-card {
  background: var(--laundry-card-bg);
  border: 2px solid var(--laundry-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--laundry-primary),
    var(--laundry-secondary)
  );
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-type-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(223, 105, 26, 0.2);
  box-shadow: 0 15px 30px rgba(223, 105, 26, 0.2);
  border-color: var(--laundry-primary);
}

.service-type-card:hover::before {
  opacity: 0.1;
}

.service-type-card.selected {
  border-color: var(--laundry-primary);
  background: rgba(223, 105, 26, 0.1);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 25px rgba(223, 105, 26, 0.3);
  box-shadow: 0 10px 25px rgba(223, 105, 26, 0.3);
}

.service-type-card.selected::before {
  opacity: 0.15;
}

.card-icon {
  font-size: 3rem;
  color: var(--laundry-primary);
  margin-bottom: 1rem;
  display: block;
}

.service-type-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--laundry-text);
  margin-bottom: 1rem;
}

.service-type-card p {
  color: var(--laundry-text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.card-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.feature-tag {
  background: rgba(223, 105, 26, 0.2);
  color: var(--laundry-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(223, 105, 26, 0.3);
}

.service-features li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* =============================================================================
   QUESTIONS GRID
   ============================================================================= */

.questions-container {
  margin-bottom: 2rem;
}

.question-item {
  background: rgba(var(--card-bg-rgb), 0.6);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(var(--border-color-rgb), 0.2);
}

.question-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

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

.option-button {
  background: rgba(var(--card-bg-rgb), 0.8);
  border: 2px solid rgba(var(--border-color-rgb), 0.3);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--text-color);
  font-weight: 500;
}

.option-button:hover {
  border-color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.1);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.option-button.selected {
  border-color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.2);
  color: var(--primary-color);
  font-weight: 600;
}

/* =============================================================================
   PORTFOLIO/INSPIRATION GRID
   ============================================================================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.portfolio-item {
  background: rgba(var(--card-bg-rgb), 0.8);
  border: 2px solid rgba(var(--border-color-rgb), 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.portfolio-item:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.2);
  box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.2);
  border-color: var(--primary-color);
}

.portfolio-item:hover::before {
  opacity: 0.1;
}

.portfolio-item.selected {
  border-color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.1);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
  box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
}

.portfolio-item.selected::before {
  opacity: 0.15;
}

.portfolio-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.portfolio-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.portfolio-tag {
  background: rgba(var(--primary-color-rgb), 0.2);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* =============================================================================
   FORM ELEMENTS
   ============================================================================= */

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(var(--border-color-rgb), 0.3);
  border-radius: 10px;
  background: rgba(var(--card-bg-rgb), 0.8);
  color: var(--text-color);
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

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

.step-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--laundry-border);
}

.nav-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.3);
  box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.3);
}

.nav-button:hover:not(:disabled) {
  background: #e27722;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(var(--primary-color-rgb), 0.4);
  box-shadow: 0 6px 15px rgba(var(--primary-color-rgb), 0.4);
}

.nav-button:disabled {
  background: rgba(255, 255, 255, 0.2);
  color: var(--laundry-text-muted);
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.6;
}

.nav-button.secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nav-button.secondary:hover:not(:disabled) {
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.2);
  box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.2);
}

/* Add icons to navigation buttons */
.next-button::after {
  content: "";
}

.prev-button::before {
  content: "";
}

/* =============================================================================
   CONTACT FORM SECTION
   ============================================================================= */

/* =============================================================================
   FORM STYLES
   ============================================================================= */

.form-container,
.contact-form-container {
  background: var(--laundry-card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--laundry-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--laundry-text);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--laundry-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--laundry-text);
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--laundry-primary);
  background: rgba(255, 255, 255, 0.1);
}

.form-help {
  font-size: 0.85rem;
  color: var(--laundry-text-muted);
  margin-top: 0.25rem;
}

.form-checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

.checkbox-item input[type="checkbox"] {
  margin-right: 0.8rem;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.checkbox-item label {
  color: var(--laundry-text);
  font-weight: 500;
  cursor: pointer;
}

/* =============================================================================
   QUESTIONS AND OPTIONS
   ============================================================================= */

.question-item {
  margin-bottom: 2rem;
  background: var(--laundry-card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--laundry-border);
}

.question-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--laundry-text);
  margin-bottom: 1rem;
}

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

.option-button {
  background: var(--laundry-card-bg);
  border: 2px solid var(--laundry-border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--laundry-text);
  font-weight: 500;
}

.option-button:hover {
  border-color: var(--laundry-primary);
  background: rgba(223, 105, 26, 0.1);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.option-button.selected {
  border-color: var(--laundry-primary);
  background: rgba(223, 105, 26, 0.2);
  color: var(--laundry-primary);
}

.option-button i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* =============================================================================
   INSPIRATION GRID
   ============================================================================= */

.inspiration-card {
  background: var(--laundry-card-bg);
  border: 2px solid var(--laundry-border);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.inspiration-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(223, 105, 26, 0.2);
  box-shadow: 0 15px 30px rgba(223, 105, 26, 0.2);
  border-color: var(--laundry-primary);
}

.inspiration-card.selected {
  border-color: var(--laundry-primary);
  -webkit-box-shadow: 0 10px 25px rgba(223, 105, 26, 0.3);
  box-shadow: 0 10px 25px rgba(223, 105, 26, 0.3);
}

.inspiration-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.inspiration-card-content {
  padding: 1.5rem;
}

.inspiration-card h4 {
  color: var(--laundry-text);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.inspiration-card p {
  color: var(--laundry-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.inspiration-card .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.inspiration-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.inspiration-card .tag {
  background: var(--laundry-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.inspiration-card.selected .tag {
  background: var(--laundry-secondary);
}

/* Make sure cards have consistent height */
.inspiration-card.h-100 {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.inspiration-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =============================================================================
   SUMMARY SECTION
   ============================================================================= */

.summary-container {
  background: var(--laundry-card-bg);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--laundry-border);
}

.summary-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--laundry-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--laundry-border);
}

.summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.summary-section h4 {
  color: var(--laundry-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.summary-section p {
  color: var(--laundry-text);
  margin-bottom: 0.5rem;
}

.summary-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-section li {
  color: var(--laundry-text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-section li:last-child {
  border-bottom: none;
}

.summary-section li strong {
  color: var(--laundry-text);
  display: block;
  margin-bottom: 0.25rem;
}

.submission-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .progress-steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }

  .progress-steps::before {
    display: none;
  }

  .step-content {
    padding: 2rem 1.5rem;
  }

  .service-types-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .step-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .step-title {
    font-size: 2rem;
  }

  .step-subtitle {
    font-size: 1rem;
  }

  .progress-container {
    padding: 1.5rem;
  }

  .step-content {
    padding: 1.5rem 1rem;
  }
}

/* ============================================================================
   STEP 1 SPECIFIC STYLES - CONSOLIDATED FROM step1-fixes.css
   ============================================================================ */

#step-1 .step-navigation {
  margin-top: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Make the card selection more obvious */
.service-type-card.selected {
  border-color: #ff7e00;
  -webkit-box-shadow: 0 8px 20px rgba(255, 126, 0, 0.2);
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.2);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* ============================================================================
   SUBMIT BUTTON STYLING - CONSOLIDATED FROM submit-button.css
   ============================================================================ */

.nav-button.btn-success {
  background-color: #28a745;
  color: white;
  -webkit-box-shadow: 0 4px 10px rgba(40, 167, 69, 0.25);
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.25);
}

.nav-button.btn-success:hover {
  background-color: #218838;
  -webkit-box-shadow: 0 6px 12px rgba(40, 167, 69, 0.35);
  box-shadow: 0 6px 12px rgba(40, 167, 69, 0.35);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* Last step styles */
.submission-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2rem;
}

/* ============================================================================
   SERVICE STYLE FIXES - CONSOLIDATED FROM service-style-fixes.css
   ============================================================================ */

/* Fix icon styling in service type cards */
.card-icon i {
  font-size: 3rem;
  color: white;
}

/* Add spacing between rows */
#inspiration-container {
  margin-bottom: 2rem;
}

/* Service Style Selected State Enhancement */
.service-style-card.selected {
  border-color: var(--primary-color);
  background: rgba(58, 41, 35, 0.9);
  -webkit-box-shadow: 0 10px 25px rgba(223, 105, 26, 0.3);
  box-shadow: 0 10px 25px rgba(223, 105, 26, 0.3);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.service-style-card.selected::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(223, 105, 26, 0.1),
    rgba(253, 126, 20, 0.05)
  );
  pointer-events: none;
}

.service-style-card.selected .style-title {
  color: var(--primary-color);
}

/* ============================================================================
   SELECT DROPDOWN STYLING - CONSOLIDATED FROM select-fixes.css
   ============================================================================ */

/* Ensure dropdown options are visible */
select option {
  background-color: #343a40;
  color: white;
  padding: 12px;
  font-size: 16px;
}

/* Style the form-select elements */
.form-select {
  background-color: rgba(58, 63, 68, 0.8);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Style the select dropdown options */
.form-select option {
  background-color: #343a40;
  color: white;
  padding: 10px;
}

/* Style the contact preference select in step 5 */
#contact-preference {
  background-color: rgba(58, 63, 68, 0.8);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  width: 100%;
}

#contact-preference option {
  background-color: #343a40;
  color: white;
  padding: 12px;
}

/* Style all select elements */
select {
  background-color: rgba(58, 63, 68, 0.8);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
}

/* For browsers that support it, style the dropdown container */
select::-ms-expand {
  display: none;
}

/* Firefox specific styling */
@-moz-document url-prefix() {
  select {
    background-color: #343a40;
    color: white;
    text-indent: 0.01px;
    text-overflow: "";
    padding-right: 1em;
  }
}

/* ============================================================================
   NAVIGATION BUTTONS - CONSOLIDATED FROM navigation-buttons.css
   ============================================================================ */

/* Reset any existing button styles */
.prev-button.nav-button,
.next-button.nav-button,
.nav-button#submit-button {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Override the existing navigation button styles to match the project builder */
.step-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(73, 80, 87, 0.2);
  gap: 1rem;
}

/* BACK button style - white outline button */
.prev-button.nav-button.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  min-width: 150px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  letter-spacing: 1px;
}

.prev-button.nav-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CONTINUE button style - orange solid button */
.next-button.nav-button:not(.secondary),
.nav-button#submit-button {
  background-color: #df691a;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  min-width: 150px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 10px rgba(223, 105, 26, 0.3);
  box-shadow: 0 4px 10px rgba(223, 105, 26, 0.3);
  letter-spacing: 1px;
}

.next-button.nav-button:not(.secondary):hover,
.nav-button#submit-button:hover {
  background-color: #e27722;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(223, 105, 26, 0.4);
  box-shadow: 0 6px 15px rgba(223, 105, 26, 0.4);
}

/* Disabled button state */
.nav-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* SUBMIT button - green styling */
#submit-button {
  background-color: #28a745 !important;
}

#submit-button:hover {
  background-color: #2dbc4e !important;
  -webkit-box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4) !important;
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4) !important;
}

#data-submit-button {
  display: none; /* Hide the actual form submit button */
}

/* Remove default button styling for all navigation buttons */
.nav-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Center the navigation on mobile */
@media (max-width: 768px) {
  .step-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .nav-button {
    width: 100% !important;
  }
}
