/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: white;
}

/* Pricing Content Wrapper */
.pricing-content-wrapper {
  max-width: 1200px;
  margin: 70px auto 0;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Calculate Price Wrapper (Left Side) */
.calculate-price-wrapper {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
}

/* Calculate Price Card */
.calculate-price-card {
  background: #FFFFFF;
  border: 1px solid #CFDEF0;
  box-shadow: 0px 0px 16px 0px #469FDF33;
  border-radius: 20px;
  padding: 30px;
}

/* Calculate Title */
.calculate-title {
  
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: #464860;
  margin-bottom: 24px;
  text-align: left;
}

/* Form Group */
.form-group {
  margin-bottom: 20px;
}

/* Form Label */
.form-label {
  display: block;
  
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #464860;
  margin-bottom: 10px;
}

/* Form Select and Input */
.form-select,
.form-input {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #D2E3F8;
  border-radius: 12px;
  padding: 0 16px;
  
  font-weight: 400;
  font-size: 14px;
  color: #464860;
  transition: all 0.3s ease;
  outline: none;
}

.form-select:focus,
.form-input:focus {
  border-color: #0654E6;
  box-shadow: 0 0 0 3px rgba(6, 84, 230, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23464860' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Price Total */
.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin: 24px 0;
  border-top: 1px solid #E8EEF5;
  border-bottom: 1px solid #E8EEF5;
}

.total-label {
  
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #464860;
}

.total-amount {
  
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #0654E6;
}

/* Place Order Button */
.place-order-btn {
  width: 100%;
  height: 52px;
  background: #0654E6;
  border-radius: 12px;
  border: none;
  
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 16px rgba(6, 84, 230, 0.3);
}

.place-order-btn:hover {
  background: #0543C1;
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(6, 84, 230, 0.4);
}

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

/* Payment Info */
.payment-info {
  margin-top: 80px;
  text-align: center;
}

.payment-text {

font-weight: 400;
font-style: Regular;
font-size: 23px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: 0px;
text-align: center;
color: #464860;
  margin-bottom: 43px;
}

/* Payment Badges */
.payment-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.secure-text {
 
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: 0px;
text-align: center;
color: #5F728B;
margin-bottom: 19px;
}
.calcultate-cta-btn{
  display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    max-width: max-content;
    width: 100%;
    margin: auto;
    padding: 0px 15px;
    background: #0654E6;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    color: white;
    text-decoration: none;
    transition: all 0.3s 
ease;
   margin-top: 40px;
}
.calcultate-cta-btn:hover{
  background: #0543C1;
  color: white;
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(6, 84, 230, 0.4);
}
.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Price Includes Wrapper (Right Side) */
.price-includes-wrapper {
  flex: 1;
  max-width: 427px;
 
  background: #F4F9FF;
  border: 1px solid #CFDEF0;
 box-shadow: 0px 0px 16px 0px #469FDF33;

  border-radius: 20px  25px;
  padding: 30px;
}

/* Includes Title */
.includes-title {
  
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #0441B2;
  margin-bottom: 19px;
  text-align: center;
  
}

/* Includes List */
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Include Item */
.priceIncludeItem{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 15px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 2px 6.5px 0px #DEE8F4;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 36px;
}

.priceIncludeItem:hover {
  box-shadow: 0px 4px 12px 0px rgba(6, 84, 230, 0.15);
  transform: translateY(-2px);
}
 
 

/* Include Text */
.include-lable {
 
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: #464860;
}

/* Include Value */
.include-value {

  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: #038733;
  text-align: right;
}

.include-value.include-free {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23038733'/%3E%3Cpath d='M6 10L8.5 12.5L14 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Includes Footer */
.includes-footer {
  
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #60738A;
  margin-top: 22px;
     padding: 20px 20px 0;
  border-top: 1px solid #CFDEF0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-content-wrapper {
    gap: 30px;
  }

  .calculate-price-wrapper,
  .price-includes-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-content-wrapper {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .calculate-price-wrapper,
  .price-includes-wrapper {
    min-width: 100%;
    max-width: 100%;
  }

  .calculate-price-card,
  .price-includes-wrapper {
    padding: 24px;
  }

  .calculate-title,
  .includes-title {
    font-size: 20px;
  }

  .form-label {
    font-size: 13px;
  }

  .form-select,
  .form-input {
    height: 44px;
    font-size: 13px;
  }

  .total-label {
    font-size: 16px;
  }

  .total-amount {
    font-size: 22px;
  }

  .place-order-btn {
    height: 48px;
    font-size: 15px;
  }

  .include-text,
  .include-value {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .pricing-section {
    padding: 40px 16px;
  }

  .pricing-content-wrapper {
    margin-top: 50px;
    gap: 24px;
    padding: 0;
  }

  .calculate-price-card,
  .price-includes-wrapper {
    padding: 20px;
  }

  .calculate-title,
  .includes-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .form-select,
  .form-input {
    height: 42px;
    font-size: 12px;
    padding: 0 12px;
  }

  .form-select {
    background-position: right 12px center;
    padding-right: 32px;
  }

  .price-total {
    padding: 16px 0;
    margin: 20px 0;
  }

  .total-label {
    font-size: 15px;
  }

  .total-amount {
    font-size: 20px;
  }

  .place-order-btn {
    height: 44px;
    font-size: 14px;
  }

  .payment-text {
            font-size: 18px;
        margin-bottom: 21px;
  }

  .secure-text {
    font-size: 13px;
  }

  .payment-image {
    max-width: 90%;
  }

  .includes-list {
    gap: 12px;
  }
.calcultate-cta-btn{
      height: 39px;
          margin-top: 50px;
    padding: 0px 19px;
}

  .include-item {
    padding: 12px 0;
  }

  .include-text,
  .include-value {
    font-size: 13px;
  }

  .includes-footer {
    font-size: 12px;
    margin-top: 20px;
    padding-top: 16px;
  }
}
