
.hk-newdesign-grid{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.hk-newdesign-left{
    padding-right: 36px;
    border-right: 1px solid #dddddd;
}

.hk-newdesign-right{
    padding-left: 28px;
}

.hk-newdesign-title{
    line-height: 1.08;
    font-weight: 700 !important;
    margin: 0px 0 35px;
}

.hk-benefit-list{
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.hk-benefit-item{
    display: flex;
    align-items: center;
    gap: 24px;
}

.hk-benefit-thumb{
    width: 132px;
    min-width: 132px;
    height: 132px;
    background: #fff;
    border: 1px solid #ececec;
padding:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.hk-benefit-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-benefit-text{
    font-size: 21px;
    line-height: 1.45;
    color: #333;
    font-weight: 500;
}

.hk-newdesign-box{
    background: #f3f3f3;
    padding: 22px 18px;
    border-radius: 4px;
    margin-bottom: 28px;
}

.hk-newdesign-field{
    margin-bottom: 18px;
}

.hk-newdesign-field label{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.hk-newdesign-field label span{
    color: #cf2e2e;
}

.hk-newdesign-field label small{
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.hk-newdesign-field input[type="text"],
.hk-newdesign-field input[type="email"],
.hk-newdesign-field input[type="tel"],
.hk-newdesign-field textarea{
    width: 100%;
    border: 1px solid #d7d7d7;
    background: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
}

.hk-newdesign-field textarea{
 height:100px;
    resize: vertical;
}

.hk-newdesign-subtitle{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #333;
    margin: 8px 0 24px;padding:0 20px;
}
.hk-newdesign-actions,.hk-newdesign-field-padding{
	padding: 0 20px;
}
    
.hk-upload-box{
    position: relative;
    border: 1px solid #d7d7d7;
    background: #fff;
    border-radius: 6px;
    min-height: 47px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    overflow: hidden;
}

.hk-upload-box input[type="file"]{
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.hk-upload-box span{
    color: #8a8a8a;
    font-size: 16px;display: flex;
    align-items: center;
    gap: 7px;
}

.hk-upload-preview {
  margin-top: 14px;
}

.hk-upload-file-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #e9e9e9;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 14px;
}

.hk-upload-file-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hk-upload-file-linkicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  flex-shrink: 0;
}

.hk-upload-file-name {
  font-size: 14px;
  color: #7c7c7c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hk-upload-file-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hk-upload-file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hk-upload-file-thumb.is-file span {
  font-size: 10px;
  color: #666;
  font-weight: 600;
}

.hk-upload-file-status {
  color: #19b45b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hk-upload-file-remove {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #8b8b8b;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hk-upload-file-remove:hover {
  color: #333;
}
.hk-newdesign-note{
    text-align: center;
    color: #666;
    font-size: 15px;
    margin: 12px 0 18px;
}

.hk-newdesign-actions{
    margin-top: 8px;
}

.hk-newdesign-submit{
    width: 100%;
    background: #333;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s ease;
}

.hk-newdesign-submit:hover{
    opacity: .92;
}

.hk-newdesign-submit:disabled{
    opacity: .6;
    cursor: not-allowed;
}

.hk-newdesign-msg{
    margin-top: 14px;
    font-size: 15px;
}

.hk-newdesign-msg.is-success{
    color: #1d7f3f;
}

.hk-newdesign-msg.is-error{
    color: #c62828;
}

@media (max-width: 1024px){
    .hk-newdesign-grid{
        display: flex;
        flex-direction: column-reverse;gap:20px;
    }

    .hk-newdesign-left{
		width:100%;
        border-right: 0;
        padding-right: 0;
    }

    .hk-newdesign-right{
      	width:100%;  padding-left: 0;
    }

    .hk-newdesign-title{
        font-size: 38px;font-size:20px;
    }
}

@media (max-width: 767px){
    .hk-benefit-item{
    gap:20px;
    }

    .hk-benefit-thumb{
        width: 80px;
        min-width: 80px;
        height: 80px;padding:5px;
    }

    .hk-benefit-text{
        font-size: 16px;
    }

    .hk-newdesign-title{
        font-size: 30px;
    }

    .hk-newdesign-subtitle{
        font-size: 20px;padding:0;
    }

    .hk-newdesign-submit{
        font-size: 16px;
    }
	.hk-newdesign-actions, .hk-newdesign-field-padding{
		padding:0;
	}
}
.hk-success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.hk-success-modal.is-open {
  display: block !important;
}

.hk-success-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hk-success-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 615px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hk-success-modal-content {
  padding: 74px 66px 62px;
}

.hk-success-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #333;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hk-success-modal-close:hover {
  opacity: 0.7;
}

.hk-success-modal-title {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: #05a34a;
  text-transform: uppercase;
}

.hk-success-modal-text {
  margin-bottom: 28px;
}

.hk-success-modal-text p {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.55;
  color: #444;
}

.hk-success-modal-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hk-success-modal-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1.4;
  color: #444;
}

.hk-success-modal-icon {
  width: 22px;
  height: 22px;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.hk-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .hk-success-modal-content {
    padding: 58px 24px 34px;
  }

  .hk-success-modal-title {
    font-size: 22px;
  }

  .hk-success-modal-text p,
  .hk-success-modal-contact-item {
    font-size: 16px;
  }
	.hk-benefit-list{gap:15px;
	}
}
