/* ============================================
   Improve Don't Move Calculator Styles
   ============================================ */

.improve-dont-move-section {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .improve-dont-move-section {
    background-attachment: scroll;
  }
}

.improve-dont-move-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.improve-dont-move-section .container {
  position: relative;
  z-index: 2;
}

.calculator-wrapper {
  margin-top: 40px;
}

.improve-dont-move-section .section-header {
  padding: 30px 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.calculator-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  background: rgba(0, 0, 0, 0.4);
  padding: 25px 35px;
  border-radius: 12px;
}

.calculator-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 0;
}

.improve-dont-move-section .section-header h2,
.improve-dont-move-section .section-header .subtitle {
  color: var(--white);
}

.cost-comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cost-column {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cost-column.moving-costs {
  border-color: var(--gray-300);
}

.cost-column.renovation-costs {
  border-color: var(--primary-color);
  background: linear-gradient(to bottom, var(--white) 0%, #fafaf8 100%);
}

.cost-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-200);
}

.cost-header svg {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cost-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.property-value-selector {
  margin-bottom: 30px;
}

.property-value-selector label {
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1rem;
}

.property-dropdown {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.property-dropdown:hover {
  border-color: var(--primary-color);
}

.property-dropdown:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.cost-breakdown {
  margin-bottom: 25px;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.cost-label {
  font-size: 0.95rem;
  color: var(--text-color);
}

.cost-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.cost-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  margin-top: 15px;
  border-top: 3px solid var(--primary-color);
}

.cost-total .cost-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.cost-total .cost-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cost-note {
  background: var(--gray-100);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.cost-note.success {
  background: #f0f9f4;
  border-left: 4px solid #10b981;
}

.cost-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

.renovation-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.renovation-option {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.renovation-option:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.renovation-option h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 8px 0;
}

.renovation-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px 0;
}

.renovation-option p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

.calculator-cta {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--gray-200);
}

.calculator-cta .btn-primary {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ============================================
   Renovation Alternatives Section
   ============================================ */

.renovation-alternatives-section {
  padding: 80px 0;
  background: var(--white);
}

.renovation-alternatives-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.renovation-alternatives-section .section-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.renovation-alternatives-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.renovation-alternatives-section .section-header .subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.renovation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.renovation-card {
  background: var(--gray-50);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.renovation-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.renovation-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 10px 0;
}

.renovation-card .renovation-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

.renovation-card p:last-child {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.section-cta {
  text-align: center;
}

.section-cta .btn-primary {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .improve-dont-move-section {
    padding: 60px 0;
  }
  
  .cost-column {
    padding: 30px 25px;
  }
  
  .cost-header h3 {
    font-size: 1.5rem;
  }
  
  .renovation-alternatives-section {
    padding: 60px 0;
  }
  
  .renovation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .renovation-card {
    padding: 25px;
  }
  
  .renovation-alternatives-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-cta .btn-primary {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    white-space: normal;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .renovation-card h3 {
    font-size: 1.1rem;
  }
  
  .renovation-card .renovation-price {
    font-size: 1.2rem;
  }
  
  .renovation-card p {
    font-size: 0.95rem;
  }
  
  .section-cta .btn-primary {
    padding: 14px 18px;
    font-size: 1rem;
  }
}
