/* Morpheo Dijital Website Price Calculator - Enhanced UX */
.morpheo-calculator-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: inherit;
  line-height: 1.6;
}

/* Dark Mode Styles */
.morpheo-calculator-container.dark-mode {
  background-color: #121212;
  color: #f8fafc;
}

/* Theme Toggle */
.theme-toggle-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.theme-toggle-btn {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dark-mode .theme-toggle-btn {
  background: #334155;
  border-color: #475569;
  color: #f8fafc;
}

.theme-toggle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Header */
.calculator-header {
  text-align: center;
  margin-bottom: 40px;
}

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff00, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.calculator-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e293b;
  background: linear-gradient(135deg, #00ff00, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dark-mode .calculator-header h1 {
  color: #f8fafc;
  -webkit-text-fill-color: #f8fafc;
}

.calculator-header p {
  color: #64748b;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.dark-mode .calculator-header p {
  color: #cbd5e1;
}

.warning {
  font-size: 1.6rem;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  margin-top: 20px;
}

/* Progress Bar */
.progress-container {
  margin-bottom: 40px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark-mode .progress-bar {
  background-color: #334155;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff00, #1d4ed8);
  transition: width 0.5s ease;
  width: 17%;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 1.6rem;
  color: #64748b;
  font-weight: 500;
}

.dark-mode .progress-info {
  color: #94a3b8;
}

/* Calculator Card */
.calculator-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dark-mode .calculator-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.dark-mode .card-header h2 {
  color: #f8fafc;
}

.card-header p {
  color: #64748b;
  margin-bottom: 32px;
  font-size: 1.6rem;
}

.dark-mode .card-header p {
  color: #94a3b8;
}

/* Form Elements */
.form-group {
  margin-bottom: 0px;
}

.form-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e293b;
}

.dark-mode .form-label {
  color: #f8fafc;
}

/* Purpose Options */
.purpose-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.purpose-option {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dark-mode .purpose-option {
  border-color: #334155;
  background-color: #334155;
}

.purpose-option:hover {
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.purpose-option.selected {
  border-color: #00ff00;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.dark-mode .purpose-option.selected {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.1));
}

.purpose-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.purpose-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.dark-mode .purpose-content h3 {
  color: #f8fafc;
}

.purpose-content p {
  color: #64748b;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.dark-mode .purpose-content p {
  color: #94a3b8;
}

.purpose-examples {
  font-size: 1.2rem;
  color: #00ff00;
  font-style: italic;
}

/* Business Questions */
.business-questions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.question-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.dark-mode .question-card {
  background: #334155;
  border-color: #475569;
}

.question-card h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e293b;
}

.dark-mode .question-card h4 {
  color: #f8fafc;
}

.business-types {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.business-type-option {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-mode .business-type-option {
  border-color: #475569;
}

.business-type-option:hover {
  background: #f1f5f9;
  border-color: #00ff00;
}

.dark-mode .business-type-option:hover {
  background: #475569;
}

.business-type-option input[type="radio"] {
  margin-right: 12px;
  accent-color: #00ff00;
}

/* Yes/No Options */
.yes-no-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.yn-option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-mode .yn-option {
  border-color: #334155;
}

.yn-option:hover {
  border-color: #00ff00;
  transform: translateY(-1px);
}

.yn-option input[type="radio"] {
  margin-right: 12px;
  accent-color: #00ff00;
}

.yn-content strong {
  display: block;
  font-size: 1.6rem;
  color: #1e293b;
}

.dark-mode .yn-content strong {
  color: #f8fafc;
}

.yn-content small {
  color: #64748b;
  font-size: 1.2rem;
}

.dark-mode .yn-content small {
  color: #94a3b8;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.contact-option {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-mode .contact-option {
  border-color: #475569;
}

.contact-option:hover {
  background: #f1f5f9;
  border-color: #00ff00;
}

.dark-mode .contact-option:hover {
  background: #475569;
}

.contact-option input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #00ff00;
}

/* Recommendation Result */
.recommendation-result {
  text-align: center;
}

.recommendation-header h3 {
  font-size: 2rem;
  color: #00ff00;
  margin-bottom: 16px;
}

.recommendation-header p {
  color: #64748b;
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.dark-mode .recommendation-header p {
  color: #94a3b8;
}

.recommended-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  border: 2px solid #00ff00;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
}

.dark-mode .recommended-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.1));
}

.recommendation-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ff00;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.recommendation-type h3 {
  font-size: 2.2rem;
  color: #1e293b;
  margin-bottom: 8px;
}

.dark-mode .recommendation-type h3 {
  color: #f8fafc;
}

.recommendation-price {
  font-size: 1.6rem;
  color: #00ff00;
  font-weight: 600;
  margin-bottom: 16px;
}

.recommendation-reasoning {
  margin-bottom: 24px;
}

.recommendation-reasoning p {
  font-size: 1.6rem;
  color: #374151;
  line-height: 1.6;
}

.dark-mode .recommendation-reasoning p {
  color: #d1d5db;
}

.recommendation-features h4 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.dark-mode .recommendation-features h4 {
  color: #f8fafc;
}

.recommendation-features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
}

.recommendation-features li {
  font-size: 1.4rem;
  color: #374151;
  text-align: left;
}

.dark-mode .recommendation-features li {
  color: #d1d5db;
}

.alternative-options {
  margin-top: 32px;
}

.alternative-options h4 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 20px;
}

.dark-mode .alternative-options h4 {
  color: #f8fafc;
}

/* Website Types Grid */
.website-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.website-type-option {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dark-mode .website-type-option {
  border-color: #334155;
  background-color: #334155;
}

.website-type-option:hover {
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.website-type-option.selected {
  border-color: #00ff00;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.dark-mode .website-type-option.selected {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.1));
}

.type-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.type-content {
  flex: 1;
}

.type-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
}

.dark-mode .type-name {
  color: #f8fafc;
}

.type-description {
  color: #64748b;
  font-size: 1.2rem;
}

.dark-mode .type-description {
  color: #94a3b8;
}

/* Content Planning */
.content-planning {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.dark-mode .content-planning {
  background: #334155;
  border-color: #475569;
}

.page-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.page-category h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.dark-mode .page-category h4 {
  color: #f8fafc;
}

.page-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.dark-mode .page-item {
  border-color: #475569;
  background: #475569;
}

.page-item.checked {
  background: #dcfce7;
  border-color: #16a34a;
}

.dark-mode .page-item.checked {
  background: #166534;
  border-color: #22c55e;
}

.page-item.selectable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-item.selectable:hover {
  background: #f1f5f9;
  border-color: #00ff00;
}

.dark-mode .page-item.selectable:hover {
  background: #64748b;
}

.page-item input[type="checkbox"] {
  margin-right: 12px;
  accent-color: #00ff00;
}

.page-content {
  flex: 1;
}

.page-name {
  font-weight: 600;
  color: #1e293b;
  display: block;
  margin-bottom: 4px;
}

.dark-mode .page-name {
  color: #f8fafc;
}

.page-desc {
  color: #64748b;
  font-size: 1.2rem;
}

.dark-mode .page-desc {
  color: #94a3b8;
}

.page-counter {
  background: #ffffff;
  border: 2px solid #00ff00;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.dark-mode .page-counter {
  background: #1e293b;
}

.counter-display {
  margin-bottom: 8px;
}

.counter-label {
  font-size: 1.6rem;
  color: #1e293b;
  margin-right: 8px;
}

.dark-mode .counter-label {
  color: #f8fafc;
}

.counter-value {
  font-size: 2rem;
  font-weight: 700;
  color: #00ff00;
}

.counter-note {
  color: #64748b;
}

.dark-mode .counter-note {
  color: #94a3b8;
}

/* Design Approach */
.design-approach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.design-option {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.dark-mode .design-option {
  border-color: #334155;
  background-color: #334155;
}

.design-option:hover {
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.design-option.selected {
  border-color: #00ff00;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.design-option input[type="radio"] {
  display: none;
}

.design-option label {
  display: block;
  cursor: pointer;
  height: 100%;
}

.design-preview {
  height: 120px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.dark-mode .design-preview {
  background: #475569;
}

.preview-mockup {
  width: 80px;
  height: 60px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mockup-header {
  height: 12px;
  background: #e2e8f0;
}

.mockup-header.gradient {
  background: linear-gradient(90deg, #00ff00, #1d4ed8);
}

.mockup-header.animated {
  background: linear-gradient(90deg, #00ff00, #1d4ed8, #8b5cf6);
  animation: gradient-shift 2s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.mockup-content {
  padding: 8px;
  height: 48px;
}

.mockup-text {
  height: 4px;
  background: #cbd5e1;
  border-radius: 2px;
  margin-bottom: 4px;
}

.mockup-text.short {
  width: 60%;
}

.mockup-image {
  width: 20px;
  height: 12px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-bottom: 4px;
}

.mockup-slider {
  height: 8px;
  background: #00ff00;
  border-radius: 4px;
  margin-bottom: 4px;
}

.mockup-cards {
  display: flex;
  gap: 4px;
}

.mockup-card {
  flex: 1;
  height: 12px;
  background: #e2e8f0;
  border-radius: 2px;
}

.design-info {
  padding: 20px;
}

.design-info h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.dark-mode .design-info h4 {
  color: #f8fafc;
}

.design-info p {
  color: #64748b;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.dark-mode .design-info p {
  color: #94a3b8;
}

.design-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.design-features span {
  background: #f1f5f9;
  color: #374151;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 1.2rem;
}

.dark-mode .design-features span {
  background: #475569;
  color: #d1d5db;
}

.design-price {
  font-weight: 700;
  color: #00ff00;
  font-size: 1.4rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.dark-mode .feature-card {
  border-color: #334155;
  background-color: #334155;
}

.feature-card:hover {
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.feature-card.selected {
  border-color: #00ff00;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.dark-mode .feature-card.selected {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.1));
}

.feature-card input[type="checkbox"] {
  display: none;
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-info {
  flex: 1;
}

.feature-info h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.dark-mode .feature-info h4 {
  color: #f8fafc;
}

.feature-info p {
  color: #64748b;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.dark-mode .feature-info p {
  color: #94a3b8;
}

.feature-benefit {
  background: #dcfce7;
  color: #166534;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
}

.dark-mode .feature-benefit {
  background: #166534;
  color: #dcfce7;
}

.feature-price {
  font-weight: 700;
  color: #00ff00;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Final Step */
.final-step-header {
  text-align: center;
  margin-bottom: 32px;
}

.final-step-header h3 {
  font-size: 2rem;
  color: #00ff00;
  margin-bottom: 8px;
}

.final-step-header p {
  color: #64748b;
  font-size: 1.6rem;
}

.dark-mode .final-step-header p {
  color: #94a3b8;
}

/* Contact Form */
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

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

.contact-form-grid .form-group {
  margin-bottom: 0;
}

.contact-form-grid label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.dark-mode .contact-form-grid label {
  color: #f8fafc;
}

.contact-form-grid input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.dark-mode .contact-form-grid input {
  background-color: #334155;
  border-color: #475569;
  color: #f8fafc;
}

.contact-form-grid input:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.privacy-notice {
  background: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.dark-mode .privacy-notice {
  background: #0c4a6e;
  border-color: #0284c7;
}

.privacy-notice p {
  margin: 0;
  color: #0c4a6e;
  font-size: 1.4rem;
}

.dark-mode .privacy-notice p {
  color: #bae6fd;
}

/* Navigation Buttons */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 120px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #64748b;
}

.dark-mode .btn-outline {
  border-color: #475569;
  color: #94a3b8;
}

.btn-outline:hover:not(:disabled) {
  border-color: #00ff00;
  color: #00ff00;
  transform: translateY(-1px);
}

.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff00, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.6rem;
  width: 100%;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.modal.hidden {
  display: none !important;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dark-mode .modal-content {
  background: #1e293b;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.dark-mode .modal-header {
  border-color: #334155;
}

.modal-header h2 {
  margin: 0;
  color: #1e293b;
  font-size: 1.8rem;
}

.dark-mode .modal-header h2 {
  color: #f8fafc;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #64748b;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.dark-mode .modal-close {
  color: #94a3b8;
}

.modal-close:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.dark-mode .modal-close:hover {
  background: #334155;
  color: #f8fafc;
}

.modal-body {
  padding: 24px;
}

/* Loading Spinner Styles - add after the existing modal styles */

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

.loading-overlay.hidden {
  display: none !important;
}

.loading-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  max-width: 400px;
  width: 90%;
}

.dark-mode .loading-content {
  background: #1e293b;
}

.loading-spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.success {
  background-color: #10b981 !important;
  border-color: #10b981 !important;
  color: white !important;
}

.loading-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.dark-mode .loading-text {
  color: #f8fafc;
}

.loading-description {
  font-size: 1.4rem;
  color: #64748b;
  line-height: 1.5;
}

.dark-mode .loading-description {
  color: #94a3b8;
}

.loading-dots {
  display: inline-block;
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}

/* Price Result */
.price-result {
  text-align: center;
}

.price-summary-content {
  margin-bottom: 24px;
}

.selected-solution h3 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 16px;
}

.dark-mode .selected-solution h3 {
  color: #f8fafc;
}

.solution-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}

.dark-mode .solution-details {
  background: #334155;
  border-color: #475569;
}

.solution-type {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00ff00;
  margin-bottom: 12px;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.solution-features span {
  background: #dcfce7;
  color: #166534;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 500;
}

.dark-mode .solution-features span {
  background: #166534;
  color: #dcfce7;
}

.price-range {
  margin: 24px 0;
}

.price-label {
  font-size: 1.6rem;
  color: #64748b;
  margin-bottom: 12px;
  display: block;
}

.dark-mode .price-label {
  color: #94a3b8;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ff00;
  display: block;
}

.price-breakdown-content {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.dark-mode .price-breakdown-content {
  background: #334155;
  border-color: #475569;
}

.price-breakdown-content h4 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 16px;
  text-align: left;
}

.dark-mode .price-breakdown-content h4 {
  color: #f8fafc;
}

.breakdown-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.dark-mode .breakdown-item {
  border-color: #475569;
}

.breakdown-item:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.6rem;
}

.breakdown-item span:first-child {
  color: #374151;
}

.dark-mode .breakdown-item span:first-child {
  color: #d1d5db;
}

.breakdown-item span:last-child {
  color: #00ff00;
  font-weight: 600;
}

.price-note {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  color: #1d4ed8;
  font-size: 1.4rem;
  line-height: 1.6;
}

.dark-mode .price-note {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

/* Consultation Info */
.consultation-info {
  margin-bottom: 24px;
}

.consultation-benefits {
  background: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: 12px;
  padding: 20px;
}

.dark-mode .consultation-benefits {
  background: #0c4a6e;
  border-color: #0284c7;
}

.consultation-benefits h4 {
  font-size: 1.6rem;
  color: #0c4a6e;
  margin-bottom: 16px;
}

.dark-mode .consultation-benefits h4 {
  color: #bae6fd;
}

.consultation-benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.consultation-benefits li {
  color: #0c4a6e;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.dark-mode .consultation-benefits li {
  color: #bae6fd;
}

.consultation-duration {
  background: #dcfce7;
  color: #166534;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.4rem;
  display: inline-block;
}

.dark-mode .consultation-duration {
  background: #166534;
  color: #dcfce7;
}

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.time-slot {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 500;
  background: #ffffff;
  position: relative;
}

.dark-mode .time-slot {
  border-color: #334155;
  background-color: #334155;
  color: #f8fafc;
}

.time-slot:hover:not(.disabled) {
  border-color: #00ff00;
  transform: translateY(-1px);
}

.time-slot.selected {
  background: #00ff00;
  color: #ffffff;
  border-color: #00ff00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.time-slot.disabled {
  background: #f1f5f9;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.6;
}

.dark-mode .time-slot.disabled {
  background: #374151;
  color: #6b7280;
  border-color: #4b5563;
}

.booked-indicator {
  position: absolute;
  top: 2px;
  right: 4px;
  color: #ef4444;
  font-size: 10px;
  font-weight: bold;
}

.loading,
.error {
  text-align: center;
  padding: 20px;
  color: #64748b;
  font-style: italic;
}

.dark-mode .loading,
.dark-mode .error {
  color: #94a3b8;
}

.error {
  color: #ef4444;
}

.dark-mode .error {
  color: #f87171;
}

/* Price calculation progress */
.calculation-steps {
  margin-top: 20px;
  text-align: left;
}

.calculation-step {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #64748b;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.dark-mode .calculation-step {
  color: #94a3b8;
}

.calculation-step.active {
  opacity: 1;
  color: #00ff00;
  font-weight: 600;
}

.dark-mode .calculation-step.active {
  color: #00ff00;
}

.calculation-step.completed {
  opacity: 1;
  color: #16a34a;
}

.dark-mode .calculation-step.completed {
  color: #22c55e;
}

.step-icon {
  margin-right: 12px;
  font-size: 1.6rem;
}

.step-check {
  color: #16a34a;
}

.dark-mode .step-check {
  color: #22c55e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .morpheo-calculator-container {
    padding: 16px;
  }

  .calculator-card {
    padding: 24px;
  }

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

  .website-types-grid {
    grid-template-columns: 1fr;
  }

  .design-approach {
    grid-template-columns: 1fr;
  }

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

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

  .calculator-header h1 {
    font-size: 2rem;
  }

  .navigation-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Error message styles */
.error-message {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px;
  border-radius: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}

.error-message.hidden {
  display: none;
}

.dark-mode .error-message {
  background-color: #450a0a;
  border-color: #7f1d1d;
  color: #fca5a5;
}

/* Focus styles */
input:focus,
select:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

input.invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px #dc2626;
}

.dark-mode input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}
