/* Quick Quote and Trusted Section */
.jwell-quote-trusted {
  padding: 80px 0;
  background: #fff;
}


.jwell-quote-trusted .quote-trusted-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Quote Form */
.jwell-quote-trusted .quote-form-section {
  background: #fff;
}

.jwell-quote-trusted .quote-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #040404;
  margin-bottom: 30px;
  line-height: 1.2;
}

.jwell-quote-trusted .quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jwell-quote-trusted .form-field {
  display: flex;
  flex-direction: column;
}

.jwell-quote-trusted .form-input,
.jwell-quote-trusted .form-textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  color: #1d1d1d;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.jwell-quote-trusted .form-input:focus,
.jwell-quote-trusted .form-textarea:focus {
  outline: none;
  border-color: #026eb7;
  background: #fff;
}

.jwell-quote-trusted .form-textarea {
  min-height: 120px;
  resize: vertical;
}

.jwell-quote-trusted .form-file-upload {
  position: relative;
}

.jwell-quote-trusted .form-file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.jwell-quote-trusted .form-file-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-size: 14px;
  color: #1d1d1d;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jwell-quote-trusted .form-file-label:hover {
  background: #e8e8e8;
  border-color: #026eb7;
}

.jwell-quote-trusted .form-file-name {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
}

.jwell-quote-trusted .form-submit-btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #026eb7;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.jwell-quote-trusted .form-submit-btn:hover {
  background: #015a9b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 110, 183, 0.3);
}

.jwell-quote-trusted .form-submit-btn:active {
  transform: translateY(0);
}

.jwell-quote-trusted .contactus-status {
  margin-top: 10px;
  font-size: 14px;
  padding: 10px;
  border-radius: 4px;
}

.jwell-quote-trusted .contactus-status[data-state="success"] {
  color: #27ae60;
  background: #d5f4e6;
}

.jwell-quote-trusted .contactus-status[data-state="error"] {
  color: #e74c3c;
  background: #fadbd8;
}

.jwell-quote-trusted .contactus-status[data-state="pending"] {
  color: #026eb7;
  background: #e3f2fd;
}

/* Right Side - Trusted Content */
.jwell-quote-trusted .trusted-content-section {
  display: flex;
  flex-direction: column;
}

.jwell-quote-trusted .trusted-title {
  font-size: 32px;
  font-weight: 700;
  color: #040404;
  margin-bottom: 20px;
  line-height: 1.2;
}

.jwell-quote-trusted .trusted-intro {
  font-size: 15px;
  color: #1d1d1d;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
}

.jwell-quote-trusted .trusted-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.jwell-quote-trusted .trusted-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.jwell-quote-trusted .trusted-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #026eb7;
  border-radius: 8px;
  color: #fff;
}

.jwell-quote-trusted .trusted-feature-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.jwell-quote-trusted .trusted-feature-content {
  flex: 1;
}

.jwell-quote-trusted .trusted-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #040404;
  margin-bottom: 10px;
  line-height: 1.3;
}

.jwell-quote-trusted .trusted-feature-desc {
  font-size: 14px;
  color: #1d1d1d;
  line-height: 1.6;
  opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 991px) {
  .jwell-quote-trusted {
    padding: 60px 0;
  }

  .jwell-quote-trusted .quote-trusted-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .jwell-quote-trusted .quote-form-title,
  .jwell-quote-trusted .trusted-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .jwell-quote-trusted {
    padding: 40px 0;
  }

  .jwell-quote-trusted .quote-trusted-wrapper {
    gap: 40px;
  }

  .jwell-quote-trusted .quote-form-title,
  .jwell-quote-trusted .trusted-title {
    font-size: 22px;
  }

  .jwell-quote-trusted .trusted-feature {
    flex-direction: column;
    gap: 15px;
  }

  .jwell-quote-trusted .trusted-feature-icon {
    width: 50px;
    height: 50px;
  }

  .jwell-quote-trusted .trusted-feature-icon svg {
    width: 28px;
    height: 28px;
  }
}

