/* Multi-step Form Styles */

/* Progress Bar */
.form-progress-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.form-progress-bar::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(245, 237, 150, 0.2);
  z-index: 0;
}

.form-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.form-progress-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 3px solid rgba(245, 237, 150, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: rgba(245, 237, 150, 0.5);
  transition: all 0.3s ease;
}

.form-progress-label {
  font-size: 0.85rem;
  color: rgba(245, 237, 150, 0.5);
  text-align: center;
  transition: all 0.3s ease;
}

.form-progress-step.active .form-progress-circle {
  background: linear-gradient(135deg, #f5ed96 0%, #CFB53B 100%);
  border-color: #f5ed96;
  color: #000;
  box-shadow: 0 4px 20px rgba(245, 237, 150, 0.4);
  transform: scale(1.1);
}

.form-progress-step.active .form-progress-label {
  color: #f5ed96;
  font-weight: 600;
}

.form-progress-step.completed .form-progress-circle {
  background: #CFB53B;
  border-color: #f5ed96;
  color: #000;
}

.form-progress-step.completed .form-progress-circle::after {
  content: '✓';
  position: absolute;
}

.form-progress-step.completed .form-progress-label {
  color: #f5ed96;
}

@media (max-width: 768px) {
  .form-progress-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .form-progress-label {
    font-size: 0.7rem;
  }
  
  .form-progress-bar::before {
    left: 15%;
    right: 15%;
  }
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

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

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

/* Inquiry Type Cards (Step 1) */
.inquiry-type-card {
  background: #1a1a1a;
  border: 2px solid rgba(245, 237, 150, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inquiry-type-card:hover {
  transform: translateY(-10px);
  border-color: #f5ed96;
}

.inquiry-type-card.selected {
  background: linear-gradient(135deg, #f5ed96 0%, #CFB53B 100%);
  border-color: #f5ed96;
  box-shadow: 0 8px 30px rgba(245, 237, 150, 0.4);
  transform: translateY(-10px);
}

.inquiry-type-card.selected h4,
.inquiry-type-card.selected p,
.inquiry-type-card.selected .inquiry-icon {
  color: #000 !important;
}

.inquiry-type-card.selected .inquiry-icon img {
  filter: brightness(0) saturate(100%) invert(0%) !important;
}

.inquiry-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  background: none;
}

.inquiry-icon img {
  width: 80px;
  height: 80px;
  filter: brightness(0) saturate(100%) invert(95%) sepia(15%) saturate(800%) hue-rotate(5deg) brightness(98%) contrast(95%);
  background: transparent;
  display: block;
}

.inquiry-type-card h4 {
  color: #f5ed96;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.inquiry-type-card p {
  color: rgba(245, 237, 150, 0.8);
  font-size: 0.95rem;
  margin: 0;
  transition: all 0.3s ease;
}

/* Event Type Options (Step 2) */
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.event-type-option {
  background: #1a1a1a;
  border: 2px solid rgba(245, 237, 150, 0.3);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.event-type-option i {
  font-size: 2rem;
  color: #f5ed96;
  transition: all 0.3s ease;
}

.event-type-option img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(95%) sepia(15%) saturate(800%) hue-rotate(5deg) brightness(98%) contrast(95%);
  transition: filter 0.3s ease;
  isolation: isolate;
}

.event-type-option span {
  color: #f5ed96;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.event-type-option:hover {
  transform: translateY(-5px);
  border-color: #f5ed96;
  box-shadow: 0 4px 20px rgba(245, 237, 150, 0.3);
}

.event-type-option.selected {
  background: linear-gradient(135deg, #f5ed96 0%, #CFB53B 100%);
  border-color: #f5ed96;
  box-shadow: 0 4px 20px rgba(245, 237, 150, 0.4);
}

.event-type-option.selected i,
.event-type-option.selected span {
  color: #000 !important;
}

.event-type-option.selected img {
  filter: brightness(0) saturate(100%) invert(0%) !important;
}

/* Service Categories (Step 3) */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-category {
  background: #1a1a1a;
  border: 1px solid rgba(245, 237, 150, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease, opacity 0.3s ease;
}

.service-category[data-availability="event-only"] {
  display: block; /* Default: show all */
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-category-header:hover {
  background: rgba(245, 237, 150, 0.1);
}

.service-category-header i:first-child {
  font-size: 1.5rem;
  color: #f5ed96;
}

.service-category-header .category-icon {
  width: 35px;
  height: 35px;
  filter: brightness(0) saturate(100%) invert(95%) sepia(15%) saturate(800%) hue-rotate(5deg) brightness(98%) contrast(95%);
  transition: filter 0.3s ease;
  isolation: isolate;
}

.service-category-header h5 {
  color: #f5ed96;
  margin: 0;
  flex: 1;
  font-weight: 600;
}

.toggle-icon {
  color: #f5ed96;
  transition: transform 0.3s ease;
}

.service-category.open .toggle-icon {
  transform: rotate(180deg);
}

.service-category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.service-category.open .service-category-content {
  max-height: 2000px;
  padding: 0 20px 20px;
}

.service-subcategory {
  margin-bottom: 20px;
}

.service-subcategory h6 {
  color: #CFB53B;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-subcategory h6 i {
  color: #f5ed96;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.service-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(245, 237, 150, 0.05);
  border: 1px solid rgba(245, 237, 150, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.service-option-label:hover {
  background: rgba(245, 237, 150, 0.1);
  border-color: #f5ed96;
}

.service-option-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #f5ed96;
}

.service-option-label span {
  color: #f5ed96;
  font-size: 0.95rem;
}

.service-option-label:has(input:checked) {
  background: linear-gradient(135deg, rgba(245, 237, 150, 0.2) 0%, rgba(207, 181, 59, 0.2) 100%);
  border-color: #f5ed96;
  box-shadow: 0 2px 10px rgba(245, 237, 150, 0.2);
}

/* Summary Box (Step 5) */
.summary-box {
  background: #1a1a1a;
  border: 2px solid rgba(245, 237, 150, 0.3);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.summary-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 237, 150, 0.2);
}

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

.summary-section h5 {
  color: #f5ed96;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-section h5 i {
  color: #CFB53B;
}

.summary-section p {
  color: rgba(245, 237, 150, 0.9);
  margin: 8px 0;
  font-size: 0.95rem;
}

.summary-section strong {
  color: #f5ed96;
  font-weight: 600;
}

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

.summary-section ul li {
  color: rgba(245, 237, 150, 0.9);
  padding: 5px 0;
  padding-left: 25px;
  position: relative;
}

.summary-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #CFB53B;
  font-weight: bold;
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(245, 237, 150, 0.2);
}

.form-navigation .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-navigation .btn-secondary {
  background: #2a2a2a;
  border: 2px solid rgba(245, 237, 150, 0.3);
  color: #f5ed96;
}

.form-navigation .btn-secondary:hover {
  background: rgba(245, 237, 150, 0.1);
  border-color: #f5ed96;
  transform: translateY(-2px);
}

.form-navigation .btn-primary {
  background: linear-gradient(135deg, #f5ed96 0%, #CFB53B 100%);
  border: 2px solid #f5ed96;
  color: #000;
}

.form-navigation .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 237, 150, 0.4);
}

.form-navigation .btn-success {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border: 2px solid #4CAF50;
  color: #fff;
}

.form-navigation .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .inquiry-type-card {
    min-height: 250px;
    padding: 30px 20px;
  }
  
  .inquiry-icon {
    font-size: 3rem;
  }
  
  .event-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .form-navigation {
    flex-direction: column;
  }
  
  .form-navigation .btn {
    width: 100%;
  }
}
