.elementor-9212 .elementor-element.elementor-element-ab69170{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:200px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}.elementor-9212 .elementor-element.elementor-element-ab69170:not(.elementor-motion-effects-element-type-background), .elementor-9212 .elementor-element.elementor-element-ab69170 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:radial-gradient(at center center, var( --e-global-color-primary ) 0%, #000000 100%);}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-9212 .elementor-element.elementor-element-b61b683 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:58px;font-weight:600;color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-9212 .elementor-element.elementor-element-f7855d6{width:var( --container-widget-width, 70% );max-width:70%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;--container-widget-width:70%;--container-widget-flex-grow:0;text-align:center;font-family:"Roboto", Sans-serif;font-size:22px;font-weight:400;color:#FFFFFF;}@media(max-width:1024px){.elementor-9212 .elementor-element.elementor-element-ab69170{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:140px;--padding-bottom:80px;--padding-left:20px;--padding-right:20px;}.elementor-9212 .elementor-element.elementor-element-b61b683 .elementor-heading-title{font-size:44px;}.elementor-9212 .elementor-element.elementor-element-f7855d6{width:var( --container-widget-width, 80% );max-width:80%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;--container-widget-width:80%;--container-widget-flex-grow:0;font-size:20px;}}@media(max-width:767px){.elementor-9212 .elementor-element.elementor-element-ab69170{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:80px;--padding-bottom:80px;--padding-left:10px;--padding-right:10px;}.elementor-9212 .elementor-element.elementor-element-b61b683 .elementor-heading-title{font-size:30px;line-height:1.2em;}.elementor-9212 .elementor-element.elementor-element-f7855d6{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;font-size:20px;}}/* Start custom CSS for html, class: .elementor-element-2ae43d0 */.calculator {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  max-width: 100%;
  width: 1000px; /* desktop limit */
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.header-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap; /* ✅ responsive */
}

select,
input {
  padding: 12px !important;
  border-radius: 50px !important;
  border: none;
  outline: none;
  width: 100%; /* ✅ responsive inputs */
}

label.select-labels {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* ✅ Unique row for calculator */
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ✅ prevent overlap */
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  gap: 12px;
  flex-wrap: wrap; /* ✅ allow wrapping */
}

.calc-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 220px; /* ✅ for mobile */
  flex-wrap: wrap;
  word-break: break-word;
}

.calc-label span {
  flex: 1; /* ✅ text gets remaining space */
  color: #fff;
}

.form-fields {
  flex: 1;
  min-width: 250px;
}

/* Toggle button */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  flex-shrink: 0; /* ✅ switch fixed size */
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

div#features span {
  color: #fff;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: 0.3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #a10205;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.totals {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  flex-wrap: wrap; /* ✅ responsive */
  gap: 10px;
}

/* ✅ Tablet */
@media (max-width: 768px) {
  .calculator {
    padding: 20px;
  }

  h2 {
    font-size: 22px;
    text-align: center;
  }

  .totals {
    font-size: 18px;
    flex-direction: column;
    align-items: center;
  }
}

/* ✅ Mobile */
@media (max-width: 480px) {
  .header-controls {
    flex-direction: column;
    gap: 15px;
  }

  .calc-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .calc-label {
    flex-direction: row;
    align-items: flex-start;
  }

  .totals {
    font-size: 16px;
    text-align: center;
  }
}/* End custom CSS */