/* SMMOM Multi Form Styles - Based on new design */
:root {
  --smmom-primary-pink: #E8A8BE;
  --smmom-secondary-beige: #F5F3EF;
  --smmom-tertiary-brown: #8B5E3C;
  --smmom-accent-orange: #F4A261;
  --smmom-text-primary: #A1510C;
  --smmom-text-secondary: #666666;
  --smmom-border-color: #000000;
  --smmom-background: #ffffff;
  --smmom-background-light: #FFF9F5;
  --smmom-shadow: none;
  --smmom-border-radius: 1.5rem;
  --smmom-border-width: 2px;
}

/* Reset and base styles */
.smmom-multi-form-wrapper * {
  box-sizing: border-box;
}

.smmom-multi-form-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--smmom-text-primary);
  padding: 2rem;
  min-height: 100vh;
}

/* Main layout */
#smmom-multi-form-container {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.smmom-form-main {
  flex: 1;
  background: var(--smmom-background);
  padding: 0;
  overflow: hidden;
}

.smmom-order-summary {
  width: 400px;
  background: var(--smmom-background);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

/* Pink Header Section - dynamic background based on step */
.smmom-header-section {
  position: relative;
  background: #E8A8BE;
  padding: 2rem 3rem;
  transition: background-color 0.3s ease;
}

/* Step 1 - Pink header */
.smmom-header-section[data-current-step="1"] {
  background: #E8A8BE;
}

/* Step 2 - Beige/cream header */
.smmom-header-section[data-current-step="2"] {
  background: #F5E6D3;
}

/* Step 3 - Orange/brown header */
.smmom-header-section[data-current-step="3"] {
  background: #D4956C;
}

.smmom-form-title {
font-family: 'Mangana Sega', sans-serif;
font-weight: 400;
font-style: Regular;
font-size: 120px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}

.smmom-ribbon-decoration {
  position: absolute;
  top: 2rem;
  right: 3rem;
  width: 60px;
  height: 80px;
  background: var(--smmom-tertiary-brown);
  border-radius: 0 0 10px 10px;
  border: 2px solid var(--smmom-border-color);
}

.smmom-ribbon-decoration::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid var(--smmom-tertiary-brown);
}

.smmom-step-title {
 font-family: Montserrat !important;
font-weight: 600;
font-style: SemiBold;
font-size: 25px !important;
color: #fff !important;
line-height: 35px;
letter-spacing: 0%;

}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

/* Step indicator (now part of header) */

.smmom-progress-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.smmom-progress-text {
  font-weight: 700;
  color: var(--smmom-text-primary);
  font-size: 0.875rem;
  white-space: nowrap;
}

.smmom-progress-bar {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid var(--smmom-border-color);
}

.smmom-progress-fill {
  height: 100%;
  background: var(--smmom-tertiary-brown);
  transition: width 0.3s ease;
  width: 0%;
}

.smmom-step-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.smmom-step-pill {
  padding: 0.75rem 2rem;
  background: var(--smmom-background);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--smmom-text-primary);
  border: none;
  border-radius: 100px;
}

.smmom-step-pill.active {
  background: var(--smmom-tertiary-brown);
  color: #FFFFFF;
}

.smmom-step-pill:hover:not(.active) {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Form steps - dynamic background based on active step */
.smmom-form-steps {
  padding: 2rem;
  background: var(--smmom-primary-pink);
  transition: background-color 0.3s ease;
}

/* Step 1 - Pink background */
.smmom-form-steps[data-current-step="1"] {
  background: #E8A8BE;
}

/* Step 2 - Beige/cream background */
.smmom-form-steps[data-current-step="2"] {
  background: #F5E6D3;
}

/* Step 3 - Orange/brown background */
.smmom-form-steps[data-current-step="3"] {
  background: #A1510C;
}

.smmom-step {
  display: none;
}

.smmom-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

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

/* Package cards */
.smmom-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.smmom-package-card {
  position: relative;
  background: var(--smmom-background);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.smmom-package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.smmom-package-card.selected {
  background: #FFC0CB;
  border-color: var(--smmom-border-color);
}

.smmom-recommended-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--smmom-primary-pink);
  color: var(--smmom-text-primary);
  padding: 0.5rem 1.5rem;
  border: 3px solid var(--smmom-border-color);
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.25);
}

.smmom-package-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  border: 2px solid var(--smmom-border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: help;
  background: transparent;
}

.smmom-package-name {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 1rem 0 0.5rem 0;
  text-transform: uppercase;
  color: var(--smmom-tertiary-brown);
}

.smmom-package-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--smmom-text-primary);
}

.smmom-package-description {
  font-size: 0.875rem;
  color: var(--smmom-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.smmom-package-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.smmom-price-old {
  font-size: 1rem;
  color: var(--smmom-text-secondary);
  text-decoration: line-through;
}

.smmom-price-current {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--smmom-tertiary-brown);
}

/* Service/Sector cards */
.smmom-services-grid,
.smmom-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.smmom-service-card,
.smmom-sector-card,
.smmom-addon-card {
  position: relative;
  background: var(--smmom-background);
  padding: 2rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.smmom-service-card:hover,
.smmom-sector-card:hover,
.smmom-addon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.smmom-service-card.selected,
.smmom-sector-card.selected,
.smmom-addon-card.selected {
  background: #000;
}

.smmom-service-info {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: help;
  background: transparent;
}

.smmom-sector-name,
.smmom-addon-name {
  font-size: 1.125rem !important;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--smmom-tertiary-brown);
}

.smmom-sector-description {
  font-size: 0.875rem;
  color: var(--smmom-text-secondary);
  margin-bottom: 1rem;
}

.smmom-sector-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--smmom-tertiary-brown);
  margin-top: 1rem;
}

.smmom-addon-pricing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

/* Toggle switch */
.smmom-service-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.smmom-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.smmom-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.smmom-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
  border: 2px solid var(--smmom-border-color);
}

.smmom-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.smmom-toggle input:checked + .smmom-toggle-slider {
  background-color: var(--smmom-tertiary-brown);
}

.smmom-toggle input:checked + .smmom-toggle-slider:before {
  transform: translateX(26px);
}

/* Navigation - white section below pink */
.smmom-form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  background: var(--smmom-background);
  gap: 1rem;
}

.smmom-btn {
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
}

.smmom-btn-primary {
  background: var(--smmom-tertiary-brown);
  color: var(--smmom-background);
}

.smmom-btn-primary:hover {
  background: #8B5A2F;
  transform: translateY(-1px);
}

.smmom-btn-secondary {
  background: var(--smmom-secondary-beige);
  color: var(--smmom-text-primary);
}

.smmom-btn-secondary:hover {
  background: #E8D5BA;
}

.smmom-btn-outline {
  background: #F7E5D3;
  color: var(--smmom-text-primary);
}

.smmom-btn-outline:hover {
  background: var(--smmom-background-light);
}

.smmom-btn-submit {
  background: var(--smmom-primary-pink);
  color: var(--smmom-text-primary);
  width: 100%;
  margin-top: 1rem;
}

.smmom-btn-contact {
  background: var(--smmom-tertiary-brown);
  color: var(--smmom-background);
  border-color: var(--smmom-tertiary-brown);
}

/* Order summary */
.smmom-order-summary h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  color: var(--smmom-tertiary-brown);
}

.smmom-summary-section {
  margin-bottom: 2rem;
}

.smmom-summary-item {
  padding: 1rem 0;
  border-bottom: 2px solid var(--smmom-border-color);
}

.smmom-summary-item:last-child {
  border-bottom: none;
}

.smmom-summary-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--smmom-text-secondary);
  margin-bottom: 0.25rem;
}

.smmom-summary-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--smmom-text-primary);
  margin-bottom: 0.25rem;
}

.smmom-summary-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--smmom-tertiary-brown);
}

.smmom-summary-total-section {
  margin: 2rem 0;
  padding: 1.5rem;
}

.smmom-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--smmom-tertiary-brown);
}

.smmom-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

/* Questions section */
.smmom-questions-section {
  margin-top: 2rem;
}

.smmom-questions-card {
  background: rgba(247, 229, 211, 1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.smmom-questions-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--smmom-tertiary-brown);
}

/* Responsive design */
@media (max-width: 1024px) {
  #smmom-multi-form-container {
    flex-direction: column;
  }

  .smmom-order-summary {
    width: 100%;
    position: static;
  }

  .smmom-packages-grid,
  .smmom-services-grid,
  .smmom-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .smmom-multi-form-wrapper {
    padding: 1rem;
  }

 

  .smmom-form-title {
    font-size: 2.5rem;
  }

  .smmom-ribbon-decoration {
    width: 40px;
    height: 60px;
    right: 1.5rem;
  }

  .smmom-form-steps {
    padding: 0 1.5rem 2rem;
  }

  .smmom-form-navigation {
    padding: 1.5rem;
  }

  .smmom-order-summary {
    padding: 1.5rem;
  }

  .smmom-packages-grid,
  .smmom-services-grid,
  .smmom-sectors-grid {
    grid-template-columns: 1fr;
  }

  .smmom-form-navigation {
    flex-direction: column;
  }

  .smmom-btn {
    width: 100%;
  }
}

/* Step 1 Add-ons Section */
.smmom-step1-addons-section {
  margin-top: 2rem;
}

.smmom-addons-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: none !important;
  border: none !important;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--smmom-text-primary);
  margin-bottom: 1rem;
  color: #ffffff !important;
}

.smmom-addons-toggle:hover {
  background: rgba(255, 255, 255, 0.9);
}

.smmom-chevron-icon {
  transition: transform 0.3s ease;
}

.smmom-addons-toggle.active .smmom-chevron-icon {
  transform: rotate(180deg);
}

.smmom-step1-addons-content {
  display: none;
}

/* Loading states */
.smmom-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus styles */
.smmom-package-card:focus,
.smmom-service-card:focus,
.smmom-sector-card:focus,
.smmom-addon-card:focus,
.smmom-btn:focus,
.smmom-toggle:focus-within {
  outline: 2px solid var(--smmom-tertiary-brown);
  outline-offset: 2px;
}


/* Step 1 Add-ons Section */
.smmom-step-1-addon {
    background: #fff;
    /* border-radius: 25px; */
}

.smmom-service-card.selected {
    background: #E39BB433;
}

.smmom-step-1-addon .smmom-service-card {
    border: none;
    border-radius: none;
    border-radius: 0;
    height: 100%;
    width: 100%;
}