 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
     color: #2d3748;
     line-height: 1.6;
     padding: 20px;
     min-height: 100vh;
 }

 .container {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 header {
     text-align: center;
     padding: 20px 0;
 }

 header h1 {
     font-size: 2.5rem;
     color: #1661A5;
     margin-bottom: 10px;
     font-weight: 700;
 }

 header p {
     font-size: 1.1rem;
     color: #4a5568;
     max-width: 700px;
     margin: 0 auto;
 }

 .card .card-body form {
     background: rgb(255 255 255 / 30%);
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     backdrop-filter: blur(50px);
     padding: 40px;
 }


 .card-header {
     background: linear-gradient(135deg, #1661A5 0%, #0d4d8c 100%);
     color: white;
     padding: 25px 30px;
 }

 .card-header h2 {
     font-size: 1.8rem;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .form-container {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin: auto;
 }

 .form-group {
     position: relative;
 }

 .form-group input {
     width: 100%;
     padding: 12px 40px 12px 12px;
     border: 1px solid #C9E5FF !important;
     border-radius: 5px;
     outline: none;
     font-size: 18px !important;
     font-family: "Plus Jakarta Sans", Sans-serif !important;
     color: #000 !important;
     transition: border-color 0.3s;
 }

 .form-group input:focus {
     border-color: #1661A5 !important;
     box-shadow: 0 0 0 3px rgba(22, 97, 165, 0.1);
 }

 .form-group label {
     display: block;
     font-size: 15px;
     font-family: "Plus Jakarta Sans", Sans-serif !important;
     padding-bottom: 8px;
     color: #000;
     font-weight: 500;
 }

 .form-container .icon {
     position: absolute;
     right: 12px;
     top: 40px;
     font-size: 18px;
     color: #718096;
 }

 .full-width {
     grid-column: span 2;
 }
 .input-group.full-width p {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 20px 0;
}

 .btn {
     background: linear-gradient(135deg, #1661A5 0%, #0d4d8c 100%);
     color: white;
     padding: 18px;
     border: none;
     border-radius: 100px;
     font-size: 16px;
     cursor: pointer;
     width: 100%;
     font-family: "Plus Jakarta Sans", Sans-serif !important;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 6px rgba(22, 97, 165, 0.2);
	 width: 100% !important;
 }

 .btn:hover {
     background: linear-gradient(135deg, #0d4d8c 0%, #0a3d75 100%);
     transform: translateY(-2px);
     box-shadow: 0 6px 10px rgba(22, 97, 165, 0.3);
 }

 .btn:active {
     transform: translateY(0);
 }

 .reset-btn {
     background: #e2e8f0;
     color: #2d3748;
     padding: 18px;
     border: none;
     border-radius: 25px;
     font-size: 16px;
     cursor: pointer;
     width: 100%;
     font-family: "Plus Jakarta Sans", Sans-serif !important;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .reset-btn:hover {
     background: #cbd5e0;
     transform: translateY(-2px);
 }

 .reset-btn:active {
     transform: translateY(0);
 }

 .sc-error {
     color: #e53e3e;
     font-size: 13px;
     margin-top: 5px;
     font-weight: 500;
     height: 20px;
 }
 .sc-result {
     padding: 40px;
     border-radius: 10px;
     background: rgb(255 255 255 / 30%);
     font-family: "Plus Jakarta Sans", Sans-serif !important;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
     backdrop-filter: blur(50px);
 }

 .sc-result-header {
     padding-bottom: 15px;
     margin-bottom: 10px;
 }

 .sc-result-header h3 {
     font-size: 1.8rem;
     color: #fff !important;
     font-weight: 700;
 }
#savings-calculator button{
	width: 100% !important;
	border: none !important;
}
 .savings-calculation {
     margin-bottom: -15px;
 }

 .savings-calculation h4 {
     font-size: 1.4rem;
     color: #2d3748;
     margin-bottom: 20px;
     font-weight: 600;
 }

 .result-item {
     display: flex;
     justify-content: space-between;
     padding: 12px 0;
     border-bottom: 1px solid rgb(255 255 255 / 20%);
     align-items: center;
 }

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

 .result-label {
     font-weight: 400;
     color: #fff;
     font-size: 16px;
 }

 .result-value {
     font-weight: 700;
     font-size: 20px;
     color: #fff;
 }

 .rate-reduction {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .old-rate {
     color: #e53e3e;
     font-weight: 700;
 }

 .new-rate {
     color: #38a169;
     font-weight: 700;
 }

 .arrow {
     color: #718096;
     font-size: 1.2rem;
 }

 .next-step {
     text-align: center;
     margin-top: 25px;
     padding-top: 20px;
     border-top: 2px solid #C9E5FF;
 }

 .next-step p {
     font-size: 1.2rem;
     color: #2d3748;
     margin-bottom: 20px;
     font-weight: 500;
 }

 .contact-btn {
     background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
     color: white;
     padding: 16px 40px;
     border: none;
     border-radius: 30px;
     font-size: 1.1rem;
     cursor: pointer;
     font-family: "Plus Jakarta Sans", Sans-serif !important;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 6px rgba(56, 161, 105, 0.2);
 }

 .contact-btn:hover {
     background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
     transform: translateY(-2px);
     box-shadow: 0 6px 10px rgba(56, 161, 105, 0.3);
 }

 .notification {
     position: fixed;
     top: 20px;
     right: 20px;
     padding: 15px 25px;
     border-radius: 8px;
     font-weight: 500;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     z-index: 1000;
     opacity: 0;
     transform: translateY(-20px);
     transition: all 0.3s ease;
 }

 .notification.show {
     opacity: 1;
     transform: translateY(0);
 }

 .notification.success {
     background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
     color: white;
 }

 .notification.error {
     background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
     color: white;
 }

 .loading {
     position: relative;
     pointer-events: none;
 }

 .loading::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     width: 20px;
     height: 20px;
     margin: -10px 0 0 -10px;
     border: 3px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     border-top-color: white;
     animation: spin 0.8s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* Modal Styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.7);
     z-index: 1000;
     justify-content: center;
     align-items: center;
     animation: fadeIn 0.3s;
 }

 .modal-content {
     background: white;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     width: 90%;
     max-width: 600px;
     overflow: hidden;
     animation: slideIn 0.3s;
 }

 .modal-header {
     background: linear-gradient(135deg, #1661A5 0%, #0d4d8c 100%);
     color: white;
     padding: 20px;
 }

 .modal-header h3 {
     font-size: 1.5rem;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .modal-body {
     padding: 30px;
 }

 .close-btn {
     position: absolute;
     top: 15px;
     right: 15px;
     background: transparent;
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes slideIn {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 @media (max-width: 768px) {
     .form-container {
         grid-template-columns: 1fr;
     }

     .form-container .full-width {
         grid-column: span 1;
     }

     .card-header h2 {
         font-size: 1.5rem;
     }

     header h1 {
         font-size: 2rem;
     }
 }


.next-step {
  background: white;
  padding: 20px;
  text-align: center;
  margin-top: 2rem;
  border-radius: 10px;
}

.next-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.next-step .button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;              /* space between buttons */
  flex-wrap: wrap;        /* so they stack on smaller screens */
  margin-bottom: 1rem;
}

.next-step .btn {
	
    width: 30% !important;
    border: none !important;
    margin: 15px;

  padding: 0.75rem 1.5rem;
  border-radius: 25px;    /* keep rounded but not pill-stretched */
  font-weight: 600;
  cursor: pointer;
  border: none;
  flex: 0 0 auto;         /* prevent stretching */
}


.upload-btn {
  background-color: #0056d2;
  color: #fff;
}

.schedule-btn {
  background-color: transparent;
  border: 2px solid #0056d2;
  color: #0056d2;
}

.next-step .disclaimer {
  font-size: 0.8rem;
  color: #666;
}

.next-step .cta {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #0056d2;
}

.sc-fixed-readonly {
            background-color: #e0e0e0 !important; /* Medium grey background */
            color: #333 !important; /* Dark text for contrast */
            border: 2px solid #909090 !important; /* Slightly darker grey border */
            border-radius: 4px !important;
            cursor: not-allowed !important; /* Show it's not editable */
            opacity: 0.9 !important;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2) !important; /* Inner shadow for depth */
            user-select: none !important; /* Prevent text selection */
        }

 