/* ===== Section Wrapper ===== */
.templates-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  background: #f9f9f9;
  border-radius: 8px;
}

/* ===== Columns (Form + Info) ===== */
.template-col {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 420px;
}

/* Hover */
.template-col:hover {
  transform: translateY(-6px);
  background: #ffe9e3;
  box-shadow: 0 8px 18px rgba(225, 58, 20, 0.15);
}

/* Titles */
.template-col h3 {
  font-size: 18px;
  text-align: center;
  color: #e13a14;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}
.template-col h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: #e13a14;
  margin: 6px auto 0;
  border-radius: 2px;
}

/* ===== Forms ===== */
#custom-lead-form,
.info-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  width: 100%;
}

#custom-lead-form input,
#custom-lead-form select,
#custom-lead-form textarea,
.info-form input,
.info-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: 0.3s;
}
#custom-lead-form input:focus,
#custom-lead-form select:focus,
#custom-lead-form textarea:focus,
.info-form input:focus,
.info-form textarea:focus {
  border-color: #e13a14;
  box-shadow: 0 0 6px rgba(225,58,20,0.2);
  outline: none;
}

/* Buttons */
#custom-lead-form button,
.info-form button {
  background: linear-gradient(90deg, #e13a14, #ff6f3c);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: auto;
}
#custom-lead-form button:hover,
.info-form button:hover {
  background: linear-gradient(90deg, #ff6f3c, #e13a14);
  box-shadow: 0 4px 10px rgba(225,58,20,0.3);
  transform: translateY(-2px);
}

/* Dynamic dropdowns */
.dynamic-dropdowns {
  width: 100%;
  display: flex;
  gap: 6px;
}
@media (max-width: 600px) {
  .dynamic-dropdowns { flex-direction: column; gap: 8px; }
}

/* Responsive: Stack on mobile */
@media(max-width: 768px){
  .templates-wrapper { flex-direction: column; }
  .template-col { flex: 1 1 100%; min-height: auto; }
}
