/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@14.2.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/.pnpm/next@14.2.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/app/(site)/calculator/calculator.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Calculator-specific styles - scoped with calc- prefix to avoid conflicts */

.calc-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.4;
}

.calc-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #181F53;
  position: relative;
}

.calc-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d93c37, #181F53);
  margin-top: 12px;
  border-radius: 2px;
}

.calc-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.calc-input-section {
  flex: 1;
  min-width: 300px;
}

.calc-results-section {
  flex: 1;
  min-width: 300px;
}

.calc-input-group {
  margin-bottom: 24px;
}

.calc-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.calc-select-wrapper {
  position: relative;
  width: 100%;
}

.calc-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #1a1a1a;
}

.calc-select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.calc-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 10px;
  color: #666;
}

.calc-value-input {
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-align: right;
  width: 130px;
  color: #1a1a1a;
}

.calc-value-input.full-width {
  width: 100%;
  margin-top: 8px;
  text-align: left;
}

.calc-slider {
  width: 100%;
  height: var(--slider-track-height, 20px);
  border-radius: calc(var(--slider-track-height, 20px) / 2);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: linear-gradient(to right, var(--slider-color, #181F53) 0%, #E5E5E5 0%);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--slider-thumb-size, 60px);
  height: var(--slider-thumb-size, 60px);
  border-radius: 50%;
  background-color: #fff;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    #d1d5db 35%,
    #d1d5db 40%,
    transparent 40%,
    transparent 47%,
    #d1d5db 47%,
    #d1d5db 53%,
    transparent 53%,
    transparent 60%,
    #d1d5db 60%,
    #d1d5db 65%,
    transparent 65%,
    transparent 100%
  );
  background-size: 100% 40%;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--slider-color, #181F53);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
  -webkit-transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.calc-slider::-moz-range-thumb {
  width: var(--slider-thumb-size, 60px);
  height: var(--slider-thumb-size, 60px);
  border-radius: 50%;
  background-color: #fff;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    #d1d5db 35%,
    #d1d5db 40%,
    transparent 40%,
    transparent 47%,
    #d1d5db 47%,
    #d1d5db 53%,
    transparent 53%,
    transparent 60%,
    #d1d5db 60%,
    #d1d5db 65%,
    transparent 65%,
    transparent 100%
  );
  background-size: 100% 40%;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--slider-color, #181F53);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

.calc-help-text {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

.calc-results-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 28px;
}

.calc-results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.calc-results-logo {
  width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.calc-results-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #1a1a1a;
}

.calc-monthly-amount {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.calc-results-subtext {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.4;
}

.calc-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.calc-breakdown-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #1a1a1a;
}

.calc-breakdown-subtext {
  font-size: 12px;
  color: #888;
}

.calc-breakdown-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.calc-cta-section {
  margin-top: 24px;
  padding-top: 8px;
}

.calc-cta-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.3;
}

.calc-cta-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.calc-cta-button {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background-color: #181F53;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease-out, background-color 0.2s ease-out;
}

.calc-cta-button:hover {
  transform: scale(1.05);
}

.calc-cta-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skew(-20deg);
}

.calc-cta-button:hover::after {
  left: 150%;
  transition: left 0.5s ease-out;
}

.calc-custom-input-wrapper {
  display: none;
  margin-top: 12px;
}

.calc-custom-input-wrapper.visible {
  display: block;
}

.calc-value-input.error {
  border: 1px dashed #B91C1C;
  background-color: #fff;
}

.calc-value-input.success {
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.calc-value-input.warning {
  border: 1px dashed #CA8A04;
  background-color: #fff;
}

.calc-error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #FEF2F2;
  border-radius: 6px;
  font-size: 13px;
  color: #B91C1C;
}

.calc-success-message {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #F0FDF4;
  border-radius: 6px;
  font-size: 13px;
  color: #16A34A;
}

.calc-warning-message {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #FEFCE8;
  border-radius: 6px;
  font-size: 13px;
  color: #CA8A04;
}

.calc-status-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (max-width: 700px) {
  .calc-container {
    padding: 24px 16px;
  }

  .calc-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 28px;
  }

  .calc-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .calc-layout {
    flex-direction: column;
    gap: 24px;
  }

  .calc-input-section,
  .calc-results-section {
    min-width: 100%;
  }

  .calc-input-group {
    margin-bottom: 16px;
  }

  .calc-input-group:last-child {
    margin-bottom: 0;
  }

  .calc-results-card {
    padding: 20px;
  }

  .calc-breakdown-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .calc-cta-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
  }

  .calc-monthly-amount {
    font-size: 36px;
  }

  .calc-faq-section {
    margin-top: 32px;
  }

  .calc-faq-title {
    text-align: center;
  }

  .calc-faq-title-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* FAQ Section */
.calc-faq-section {
  margin-top: 48px;
  padding-bottom: 48px;
}

.calc-faq-title {
  font-size: 24px;
  font-weight: 700;
  color: #181F53;
  margin-bottom: 24px;
  position: relative;
}

.calc-faq-title-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d93c37, #181F53);
  margin-top: 12px;
  border-radius: 2px;
}

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

.calc-faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.calc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  gap: 16px;
}

.calc-faq-question.open {
  background: #f8f8f8;
}

.calc-faq-answer {
  padding: 0 20px 16px 20px;
  background-color: #f8f8f8;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.calc-faq-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.calc-faq-arrow.open {
  transform: rotate(180deg);
}

