/* === Car Insurance Calculator - Modern Responsive Design === */

.cic-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: all 0.3s ease-in-out;
}

.cic-container h2 {
  text-align: center;
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Form Labels */
#cic-form label {
  font-weight: 600;
  margin-top: 18px;
  display: block;
  color: #333;
}

/* Form Inputs & Select */
#cic-form input,
#cic-form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  margin-top: 5px;
  font-size: 16px;
  background-color: #fafafa;
  transition: border 0.3s ease;
}

#cic-form input:focus,
#cic-form select:focus {
  border-color: #FE6100;
  outline: none;
  box-shadow: 0 0 0 2px rgba(254, 97, 0, 0.2);
}

/* Shopify-Style Button */
#cic-form button {
  margin-top: 25px;
  width: 100%;
  padding: 16px;
  background-color: #000000;
  color: white;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#cic-form button:hover {
  background-color: #FE6100;
}

/* Result Section */
.cic-result {
  text-align: center;
  margin-top: 40px;
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

/* Progress Bar */
.progress-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke: #FE6100;
  stroke-width: 10;
  fill: transparent;
  transition: stroke-dashoffset 0.6s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: #FE6100;
}

#premium-text {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Mobile Styles ===== */
@media screen and (max-width: 600px) {
  .cic-container {
    padding: 20px;
    margin: 20px;
  }

  .cic-container h2 {
    font-size: 24px;
  }

  #cic-form button {
    font-size: 16px;
    padding: 14px;
  }

  .progress-container {
    width: 110px;
    height: 110px;
  }

  .progress-text {
    font-size: 20px;
  }

  #premium-text {
    font-size: 18px;
  }
}
/* Google Fonts - Applied styles */
body {
  font-family: 'Inter', sans-serif;
}

h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
