/* Additional styles for chillers-annual page */

/* Calculator styles */
.calculator-container {
  max-width: 100%;
}

.calc-input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
}

.calc-input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,255,255,.3);
  background: rgba(0,0,0,.4);
  color: var(--ice);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.calc-input-group input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,255,255,.1);
  background: rgba(0,0,0,.6);
}

.calc-input-group input:hover {
  border-color: rgba(0,255,255,.5);
}

.calc-results {
  background: rgba(255,45,45,.1);
  border: 2px solid rgba(255,45,45,.3);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

/* Problem cards animation */
.problem-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,45,45,.2);
}

/* Solution categories */
.solution-category {
  transition: transform 0.3s ease;
}

.solution-category:hover {
  transform: translateY(-2px);
}

/* Service tier cards */
.service-tier {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,255,255,.15);
}

/* FAQ items */
.faq-item {
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  transform: translateX(-4px);
  background: rgba(255,255,255,.06);
}

/* Responsive adjustments */
@media (max-width: 820px) {
  .calculator-container {
    padding: 0;
  }
  
  .calc-input-group {
    margin-bottom: 16px;
  }
  
  .calc-results {
    padding: 20px;
  }
  
  .problem-card,
  .service-tier {
    margin-bottom: 16px;
  }
}

@media (max-width: 520px) {
  .calc-results {
    padding: 16px;
  }
  
  .calc-results h3 {
    font-size: 16px;
  }
  
  #calc-excess,
  #calc-downtime-cost,
  #calc-total {
    font-size: 20px !important;
  }
  
  .faq-item {
    padding: 16px;
  }
  
  .faq-item h3 {
    font-size: 16px;
  }
}

